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

ASPxClientDockManager.PanelResize Event

Occurs on the client side after a panel has been resized.

Declaration

PanelResize: ASPxClientEvent<ASPxClientDockManagerEventHandler<ASPxClientDockManager>>

Event Data

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

Property Description
panel Gets the panel currently being processed.

Remarks

The ASPxDockManager’s client-side functionality provides the capability to respond to end-user manipulation of panels. After a panel has been resized, the PanelResize event fires. This event can be handled to implement custom processing.

The PanelResize event provides an argument of the ASPxClientDockManagerEventArgs type. The event argument’s ASPxClientDockManagerEventArgs.panel property allows you to access the panel that has been resized.

See Also