Back to Devexpress

TdxDockingType Subrange Type

vcl-dxdockcontrol-2b69f75b.md

latest2.8 KB
Original Source

TdxDockingType Subrange Type

Contains values specifying the docking type.

Declaration

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

Members

NameDescription
dtBottomInherited from TdxDockingTypeEx.
dtClientInherited from TdxDockingTypeEx.
dtLeftInherited from TdxDockingTypeEx.
dtRightInherited from TdxDockingTypeEx.
dtTopInherited 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.

ValueDescription
dtClientA 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.
dtLeftA 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.
dtTopA 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.
dtRightA 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.
dtBottomA 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

dxDockControl Unit