System.UITypes.TFontStyles
Delphi
type TFontStyles = set of TFontStyle;
C++
typedef System::Set<TFontStyle, _DELPHI_SET_ENUMERATOR(TFontStyle::fsBold), _DELPHI_SET_ENUMERATOR(TFontStyle::fsStrikeOut)> TFontStyles;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
set typedef |
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