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

TdxCustomDockControl.ManagerFont Property

Specifies whether the dock control uses the font specified by the docking manager.

#Declaration

Delphi
property ManagerFont: Boolean read; write; default True;

#Property Value

Type Default
Boolean True

#Remarks

Use the ManagerFont property to specify whether the dock control should use the font specified by the docking manager. This implies that changing the Font property of the docking manager sets the Font property of the dock control, thus allowing you to provide centralized control over the dock controls’ appearance.

If the ManagerFont property is set to False, the font of the dock control is specified by its Font property. The docking manager’s Font property value is ignored in this case.

Note

The dock control’s Font property imports its value from the docking managr’s Font property if the ManagerFont property is set to True. The dock control’s Font property does not restore its original value when the ManagerFont property value changes to False.

The ManagerFont property’s default value is True.

See Also