Table of Contents

TFlxFontStyles Enumeration

Font style. You can "or" on "and" it to get the actual styles. For example, to set style to bold+italic, you should use TFlxFontStyles.Bold | TFlxFontStyles.Italic. to check if style includes italic, use ((Style & TFlxFontStyles.Italic)!=0)

Syntax

Namespace: FlexCel.Core

Members

Name Value Description
None 0 Normal font.
Bold 1 Bold font.
Italic 2 Italic font.
StrikeOut 4 Stroke out font.
Superscript 8 Superscript font.
Subscript 16 Subscript font.
Outline 32 Outlined font. Excel currently ignores this setting.
Shadow 64 Font has a shadow. Excel currently ignores this setting.
Condense 128 Condensed font, for backwards compatibility. Excel ignores this setting.
Extend 256 Extended font, for backwards compatibility. Excel ignores this setting.