ASPxClientSplitter.PaneCollapsing Event
Fires before a pane is collapsed.
Declaration
PaneCollapsing: ASPxClientEvent<ASPxClientSplitterPaneCancelEventHandler<ASPxClientSplitter>>
Event Data
The PaneCollapsing 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 PaneCollapsing event to specify whether the pane may be collapsed. To cancel this action, set the event parameter’s cancel property to true
.
See Also