TdxRichEditStrikeoutType Enum
In This Article
Enumerates available strikeout styles.
#Declaration
Delphi
TdxRichEditStrikeoutType = (
None = 0,
Single = 1,
Double = 2
);
#Members
Name |
---|
None
|
Single
|
Double
|
#Remarks
Options include:
Value | End-User Command | Description | Example |
---|---|---|---|
None |
– | Text is not striked out in this mode. | ![]() |
Single |
Toggle |
The style setting corresponds to a single solid strikeout line. | ![]() |
Double |
Toggle |
The style setting corresponds to a double solid strikeout line. | ![]() |
The IdxRichEditChracterPropertiesBase.Strikeout property references the TdxRichEditStrikeoutType type.
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 Single
value in code.
See Also