TdxRichEditUsedCharacterFormattingOption Enum
In This Article
Enumerates character attributes.
#Declaration
Delphi
TdxRichEditUsedCharacterFormattingOption = (
UseFontName,
UseDoubleFontSize,
UseFontBold,
UseFontItalic,
UseFontStrikeoutType,
UseFontUnderlineType,
UseAllCaps,
UseForeColor,
UseBackColor,
UseUnderlineColor,
UseStrikeoutColor,
UseUnderlineWordsOnly,
UseStrikeoutWordsOnly,
UseScript,
UseHidden,
UseNoProof
);
#Members
Name |
---|
Use
|
Use
|
Use
|
Use
|
Use
|
Use
|
Use
|
Use
|
Use
|
Use
|
Use
|
Use
|
Use
|
Use
|
Use
|
Use
|
#Remarks
Options include:
Value | Description | Idx |
---|---|---|
Use |
The font name character attribute. | Font |
Use |
The double font size character attribute. | – |
Use |
The Bold character attribute. | Bold |
Use |
The Italic character attribute. | Italic |
Use |
The font Strkeout type character attribute. | Strikeout |
Use |
The font Underline character attribute. | Underline |
Use |
The Uppercase character attribute. | All |
Use |
The Fore color character attribute. | Fore |
Use |
The Back color character attribute. | Back |
Use |
The Underline color character attribute. | Underline |
Use |
The Strikeout color character attribute. | Strikeout |
Use |
The Underline attribute applied only to printable characters. | – |
Use |
The Strikeout attribute applied only to printable characters. | – |
Use |
The Superscript or Subscript character attribute. | Super |
Use |
The Hidden character attribute. | Hidden |
Use |
The No |
– |
A TdxRichEditCharacterPropertiesMask value can contain any number of the TdxRichEditUsedCharacterFormattingOption type values in any combination.
Note
Tdx
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 Tdx
(in Delphi) or Tdx
(in C++Builder) to refer to the Use
value in code.
See Also