Skip to main content

FlyoutCloseReason Enum

Lists actions that close a flyout window.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

public enum FlyoutCloseReason

Members

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.

Related API Members

The following properties accept/return FlyoutCloseReason values:

Remarks

The Closing event allows you to process close actions. The event argument’s CloseReason property identifies which action closes the window. The property returns one of the FlyoutCloseReason enumeration values. You can set the Cancel property to true to cancel the action.

See Also