TiDualCompass.LabelTopFont

TiDualCompass See Also

Controls the font attributes of the Top Label displayed in the center, circular-shaped area of the control.

property LabelTopFont : TFont;

Description

Use LabelTopFont to get or set the font attributes of the Top Label. To change to a new font, specify a new TFont object. To modify a font, change the value of the Color, Height, Name, Pitch, Size, or Style of the TFont object.

Example

Delphi

iComponent.LabelTopFont.Name := 'MS Sans Serif';

iComponent.LabelTopFont.Color := clBlack;

C++ Builder

iComponent->LabelTopFont->Name = "MS Sans Serif";

iComponent->LabelTopFont->Color = clBlack;

Contents | Index | Previous | Next