TdxDockingType Subrange Type
Contains values specifying the docking type.
Declaration
TdxDockingTypeEx = (dtClient, dtLeft, dtTop, dtRight, dtBottom, dtNone);
TdxDockingType = dtClient..dtBottom;
Members
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
TdxDockingTypeExSee Also