Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxRichEditStrikeoutType Enum

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. No strikeout
Single ToggleFontStrikeout The style setting corresponds to a single solid strikeout line. Single strikeout
Double ToggleFontDoubleStrikeout The style setting corresponds to a double solid strikeout line. Double strikeout

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