ASPxClientSplitter.PaneExpanding Event
Fires before a pane is expanded.
Declaration
PaneExpanding: ASPxClientEvent<ASPxClientSplitterPaneCancelEventHandler<ASPxClientSplitter>>
Event Data
The PaneExpanding event's data class is ASPxClientSplitterPaneCancelEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
cancel | Gets or sets a value indicating whether the action which raised the event should be canceled. |
pane | Gets the pane object related to the event. Inherited from ASPxClientSplitterPaneEventArgs. |
Remarks
Handle the PaneExpanding event to specify whether the pane may be expanded. To cancel this action, set the event parameter’s cancel property to true
.
See Also