System.UITypes.TFontStyle

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TFontStyle = (fsBold, fsItalic, fsUnderline, fsStrikeOut);

C++

enum DECLSPEC_DENUM TFontStyle : unsigned char { fsBold, fsItalic, fsUnderline, fsStrikeOut };

Properties

Type Visibility Source Unit Parent
enum public
System.UITypes.pas
System.UITypes.hpp
System.UITypes System.UITypes

Description

TFontStyle and TFontStyles specify the style characteristics of a font.

TFontStyles is a set of TFontStyle values. The following table lists the possible values of TFontStyle:

Value Meaning

fsBold

The font is bold.

fsItalic

The font is italic.

fsUnderline

The font is underlined.

fsStrikeOut

The font is displayed with a horizontal line through it.

See Also

Code Examples