FMX.Graphics.TFont.Style

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Style: TFontStyles read GetStyle write SetStyle stored False;

C++

__property System::Uitypes::TFontStyles Style = {read=GetStyle, write=SetStyle, stored=false, nodefault};

Properties

Type Visibility Source Unit Parent
property published
FMX.Graphics.pas
FMX.Graphics.hpp
FMX.Graphics TFont

Description

Determines whether the font is normal, italic, underlined, and so on.

Use Style to add special characteristics to characters that use the font. Style is a set containing zero or more values from the following:


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