System.UITypes.TFontStyles

From RAD Studio API Documentation
Jump to: navigation, search

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

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