Vcl.Direct2D.TDirect2DFont.Style
Delphi
property Style: TFontStyles read FStyle write FStyle;
C++
__property System::Uitypes::TFontStyles Style = {read=FStyle, write=FStyle, nodefault};
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| property | published | Vcl.Direct2D.pas Vcl.Direct2D.hpp |
Vcl.Direct2D | TDirect2DFont |
Description
Determines whether the font is normal, italic, underlined, bold, and so on.
Use Style to add special characteristics to characters that use the font. Style is a set containing zero or more values listed in the following table.
| 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. |