Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxCustomDockControl.OnEndResizing Event

In This Article

Fires immediately after a resizing operation has been finished.

#Declaration

Delphi
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