DxDrawer.IsOpenChanged Event
Fires when the drawer panel opens or closes.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v25.1.dll
NuGet Package: DevExpress.Blazor
Declaration
[Parameter]
public EventCallback<bool> IsOpenChanged { get; set; }
Parameters
| Type | Description |
|---|---|
| Boolean | A new value of the IsOpen property. |
Remarks
The IsOpenChanged event occurs when the IsOpen property value is changed. For instance, it fires when the Mode property is set to Overlap, the CloseOnTargetContentClick property is set to true (the default value), and a user clicks on a content area. Handle the IsOpenChanged event to react to this action.
See Also