Vcl.Controls.TWinControl.DockClientCount
Delphi
property DockClientCount: Integer read GetDockClientCount;
C++
__property int DockClientCount = {read=GetDockClientCount, nodefault};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | public | Vcl.Controls.pas Vcl.Controls.hpp |
Vcl.Controls | TWinControl |
Description
Specifies the number of controls that are docked on the windowed control.
Use DockClientCount to get the number of controls that are docked to the windowed control. This value can be used as an upper bound when iterating through the DockClients property.
Note: The DockClients property can contain controls that are not visible. To get the number of docked clients that are visible, use the VisibleDockClientCount property instead.
See Also
Code Examples