Skip to main content
A newer version of this page is available. .

TdxDockingManager.Font Property

Specifies the font used by dock controls.

Declaration

property Font: TFont read; write;

Property Value

Type Description
TFont

Font settings.

Remarks

You can specify font settings of individual dock controls by modifying their Font property value. However, you will often need to provide the same font settings for all or most of the dock controls in your application. This can be done using the docking manager’s Font property. Values assigned to this property are automatically assigned to the Font property of all dock controls whose ManagerFont property value is True (the default). Thus, the docking manager’s Font property affects the font settings of all dock controls by default.

Note that changing the Font property of a dock control automatically sets the control’s ManagerFont property to False. Thus, subsequent changes to the manager’s Font property will not affect this control unless its ManagerFont property is set back to True.

See Also