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.GetResizeZoneAtPos(TPoint) Method

Gets the resize zone located under the specified point.

#Declaration

Delphi
function GetResizeZoneAtPos(APoint: TPoint): TdxZone; virtual;

#Parameters

Name Type
APoint TPoint

#Returns

Type
TdxZone

#Remarks

Dock controls store a list of resize zones in their ResizeZones property. The GetResizeZoneAtPos method is used to obtain the resize zone located under the specified point. The point is specified in control’s client coordinates via the pt parameter. If no zone is found at the specified position, the GetResizeZoneAtPos method returns nil.

Normally, you will have no need to use this method in applications.

See Also