vcl-dxrichedit-dot-nativeapi-097873e5.md
Enumerates available strikeout styles.
TdxRichEditStrikeoutType = (
None = 0,
Single = 1,
Double = 2
);
| Name |
|---|
None |
Single |
Double |
Options include:
| Value | End-User Command | Description | Example |
|---|---|---|---|
None | – | Text is not striked out in this mode. | |
Single | ToggleFontStrikeout | The style setting corresponds to a single solid strikeout line. | |
Double | ToggleFontDoubleStrikeout | The style setting corresponds to a double solid strikeout line. |
The IdxRichEditChracterPropertiesBase.Strikeout property references the TdxRichEditStrikeoutType type.
Note
TdxRichEditStrikeoutType 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 TdxRichEditStrikeoutType.Single (in Delphi) or TdxRichEditStrikeoutType::Single (in C++Builder) to refer to the Single value in code.
See Also