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

TdxDockingManager.DefaultSitesProperties Property

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

#Declaration

Delphi
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