TdxFontOptionsValue Enum
Enumerates flags that correspond to individual font settings.
Declaration
TdxFontOptionsValue = (
Bold,
Charset,
Italic,
Name,
Pitch,
Quality,
Size,
StrikeOut,
Underline
);
Members
Name | Description |
---|---|
Bold
|
The Bold property value defines the Bold font attribute at the current hierarchy level. |
Charset
|
The Charset property value defines the character set of the active font typeface at the current hierarchy level. |
Italic
|
The Italic property value defines the Italic font attribute at the current hierarchy level. |
Name
|
The Name property value defines the font typeface at the current hierarchy level. |
Pitch
|
The Pitch property value defines the pitch of the active font typeface at the current hierarchy level. |
Quality
|
The Quality property value defines font quality at the current hierarchy level. |
Size
|
The Size property value defines font size at the current hierarchy level. |
StrikeOut
|
The StrikeOut property value defines the Strikeout font attribute at the current hierarchy level. |
Underline
|
The Underline property value defines the Underline font attribute at the current hierarchy level. |
Remarks
Font setting flags allow you to track font setting changes at the current hierarchy level and reset individual font settings. If a font setting flag is set, the corresponding font setting is in effect at the current hierarchy level. Otherwise, the current visual element inherits the corresponding font setting from its parent.
The TdxFontOptionsValue
type enumerates flags that correspond to individual font settings. The AssignedValues property of the TdxChildFontOptions class can include any number of TdxFontOptionsValue
flags to define what font settings override corresponding inherited values.
Note
TdxFontOptionsValue
is a scoped enumeration type. Use the type name together with a scope resolution token (.
in Delphi or ::
in C++Builder) followed by an enumeration value to refer to this value. For example, use TdxFontOptionsValue.Underline
(in Delphi) or TdxFontOptionsValue::Underline
(in C++Builder) to refer to the Underline
value in code.
Direct TdxFontOptionsValue Class References
The TdxFontOptionsValues type references the TdxFontOptionsValue
type.