Skip to main content

TdxDockingManager.DefaultSitesProperties Property

Provides indexed access to objects specifying the default settings of dock controls.

Declaration

property DefaultSitesProperties[Index: Integer]: TdxCustomDockControlProperties read;

Property Value

Type
TdxCustomDockControlProperties

Remarks

The docking manager component introduces properties that allow you to specify the default settings for dynamically created dock controls. The DefaultFloatSiteProperties, DefaultHorizContainerSiteProperties, DefaultLayoutSiteProperties, DefaultTabContainerSiteProperties and DefaultVertContainerSiteProperties properties provide the default settings for dynamically created float sites, horizontal side containers, layout sites, tab containers and vertical side containers.

The DefaultSitesProperties property provides indexed access to objects holding the default settings for dock controls. It can be used when you need to change settings in all or most of these default settings objects. Thus, you can traverse through the list and perform the modifications desired.

The object currently accessed is specified by the Index parameter. The index of the first object in the list is zero. The last available index is the DefaultSitesPropertiesCount property value decremented by one. If an invalid index is specified, the DefaultSitesProperties property returns nil.

See Also