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

DockManager.EndSizing Event

Fires after a resize operation on a dock panel has finished.

Namespace: DevExpress.XtraBars.Docking

Assembly: DevExpress.XtraBars.v18.2.dll

Declaration

[DXCategory("Docking")]
public event EndSizingEventHandler EndSizing

Event Data

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

Property Description
Canceled Gets a value which indicates whether the operation has been canceled.
Panel Gets the processed dock panel. Inherited from DockPanelEventArgs.
SizingSide Gets the dock panel’s dragged edge.

Remarks

Handle the EndSizing event to perform actions after end-users have finished resizing the dock panel. This can for instance, be used to perform any cleanup necessary after handling the DockManager.StartSizing event.

This event serves only as a notification that the operation has been completed.

For general information on resizing the dock panels, see the Controlling Resizing Operations documents.

See Also