TiKeyBoard.Font

TiKeyBoard

Controls the attributes of the font used to draw the keyboard keys.

property Font : TFont;

Description

Use Font to get or set the font attributes of the keyboard keys. 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.Font.Name := 'MS Sans Serif';

iComponent.Font.Color := clBlack;

C++ Builder

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

iComponent->Font->Color = clBlack;

Contents | Index | Previous | Next