System.UITypes.TFontStyle
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 |
---|---|
|
The font is bold. |
|
The font is italic. |
|
The font is underlined. |
|
The font is displayed with a horizontal line through it. |
See Also
Code Examples