Skip to main content

TdxCustomDockControl.GetResizeZoneAtPos(TPoint) Method

Gets the resize zone located under the specified point.

Declaration

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