Skip to main content
All docs
V25.1
  • FlyoutClosingEventArgs.CloseReason Property

    Identifies the action that closes the Flyout.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    public FlyoutCloseReason CloseReason { get; }

    Property Value

    Type Description
    FlyoutCloseReason

    A value that identifies the close action reason.

    Available values:

    Name Description
    Programmatically

    You set the IsOpen property to false, called the CloseAsync method, or sent the CloseCallback.

    EscapePress

    A user pressed Escape.

    OutsideClick

    A user clicked outside the Flyout’s boundaries. You can set the CloseOnOutsideClick property to false to disable this option.

    Remarks

    Refer to the Closing event description for more information and an example.

    See Also