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

TdxDockingType Subrange Type

Contains values specifying the docking type.

#Declaration

Delphi
TdxDockingTypeEx = (dtClient, dtLeft, dtTop, dtRight, dtBottom, dtNone);
TdxDockingType = dtClient..dtBottom;

#Members
Show Inherited Hide Inherited

Name Description
dtBottom Inherited from TdxDockingTypeEx.
dtClient Inherited from TdxDockingTypeEx.
dtLeft Inherited from TdxDockingTypeEx.
dtRight Inherited from TdxDockingTypeEx.
dtTop Inherited from TdxDockingTypeEx.

#Remarks

The TdxDockingType enumerator represents the type of several properties and parameters of methods and events. Values listed by this enumerator specify the manner in which one dock control is docked to another. The following values are available.

Value Description
dtClient A control is docked to fill the entire client area of the target control. If the target control is not a dock site or float site, such docking results in forming a tab container.
dtLeft A control is docked to the left edge of the target control. If the target control is not a dock site or layout site, such docking results in forming a horizontal side container.
dtTop A control is docked to the top edge of the target control. If the target control is not a dock site or layout site, such docking results in forming a vertical side container.
dtRight A control is docked to the right edge of the target control. If the target control is not a dock site or layout site, such docking results in forming a horizontal side container.
dtBottom A control is docked to the bottom edge of the target control. If the target control is not a dock site or layout site, such docking results in forming a vertical side container.

#Base Type

TdxDockingTypeEx
See Also