blazor-devexpress-dot-blazor-737984a2.md
Lists actions that close a flyout window.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
public enum FlyoutCloseReason
| 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.
|
The following properties accept/return FlyoutCloseReason values:
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