Back to Devexpress

TdxRichEditStrikeoutType Enum

vcl-dxrichedit-dot-nativeapi-097873e5.md

latest1.8 KB
Original Source

TdxRichEditStrikeoutType Enum

Enumerates available strikeout styles.

Declaration

delphi
TdxRichEditStrikeoutType = (
    None = 0,
    Single = 1,
    Double = 2
);

Members

Name
None
Single
Double

Remarks

Options include:

ValueEnd-User CommandDescriptionExample
NoneText is not striked out in this mode.
SingleToggleFontStrikeoutThe style setting corresponds to a single solid strikeout line.
DoubleToggleFontDoubleStrikeoutThe 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

dxRichEdit.NativeApi Unit