Skip to main content

TdxDockingManager.DefaultFloatSiteProperties Property

Specifies the default settings for float sites.

Declaration

property DefaultFloatSiteProperties: TdxFloatDockSiteProperties read; write;

Property Value

Type
TdxFloatDockSiteProperties

Remarks

When a dock panel, tab container or side container is set to float, an underlying float form is created. However, those dock controls cannot reside directly on forms. Thus, a float site is created to be the floating control’s parent. This float site fills the entire client area of the form and is completely filled by its child, in turn.

Default settings of float sites are provided by the DefaultFloatSiteProperties property. Each time a float site is created, these settings are used to initialize the site’s properties. Thus, the DefaultFloatSiteProperties property can be used if you need float sites to be created with custom settings.

Note

changing the settings of the DefaultFloatSiteProperties property doesn’t affect existing float sites. The specified settings are applied to float sites created subsequently.

You can disable the DefaultFloatSiteProperties property functionality by setting the UseDefaultSitesProperties property to False.

See Also