Skip to main content
A newer version of this page is available. .

ASPxClientSplitter.PaneResized Event

Fires after a pane has been resized.

Declaration

PaneResized: ASPxClientEvent<ASPxClientSplitterPaneEventHandler<ASPxClientSplitter>>

Event Data

The PaneResized event's data class is ASPxClientSplitterPaneEventArgs. The following properties provide information specific to this event:

Property Description
pane Gets the pane object related to the event.

Remarks

This event is raised after a pane has been resized by an end-user. Note that it provides a notification only, and you cannot cancel the action. To control whether individual panes can be resized, handle the ASPxClientSplitter.PaneResizing event instead.

Note that the PaneResized event is automatically generated after the page is loaded into the browser - in particular, after the splitter’s size has been calculated. This allows you to programmatically resize controls which are contained within the splitter’s panes, and require their sizes to be recalculated via client scripts (for instance, the ASPxGridView).

See Also