Skip to main content

TdxCustomDockControl.OnEndResizing Event

Fires immediately after a resizing operation has been finished.

Declaration

property OnEndResizing: TdxResizingEvent read; write;

Remarks

Handle the OnEndResizing event to perform specific actions when a resizing operation on the dock control is finished. For instance, you can perform actions in the OnStartResizing event handler. In this case, the OnEndResizing event can be used to perform any necessary cleanup.

The Sender parameter identifies the control on which the resizing operation has been performed. The Zone parameter returns the resize zone that took part in the resizing process. Use this parameter to obtain additional information about the resizing performed. For instance, you can determine whether horizontal or vertical resizing has just finished. Read the Direction property of the zone obtained for this purpose.

The X and Y parameters indicate the current mouse pointer position in screen coordinates.

See Also