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.Font Property

Specifies the font used by dock controls.

#Declaration

Delphi
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