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

TdxRichEditTabLeaderType Enum

Enumerates repeated characters used to fill the space between two parts of a text string separated by the tab that ends at a tab stop.

#Declaration

Delphi
TdxRichEditTabLeaderType = (
    None,
    Dots,
    MiddleDots,
    Hyphens,
    Underline,
    ThickLine,
    EqualSign
);

#Members

Name
None
Dots
MiddleDots
Hyphens
Underline
ThickLine
EqualSign

#Remarks

Options include:

Value Description Example
None No tab leader characters are displayed. None
Dots The dot is used as a tab leader character. Dots
MiddleDots The middle dot (interpunct) is used as a tab leader character. Middle Dots
Hyphens The hyphen is used as a tab leader character. Hyphens
Underline The underscore is used as a tab leader character. Underline
ThickLine The thick line is used instead of tab leader characters. ThickLine
EqualSign The equal sign is used as a tab leader character. Equal Sign

The TdxRichEditTabLeader type is referenced by the GetLeader and SetLeader methods, and the Leader property exposed by the IdxRichEditTabInfo interface.

Note

TdxRichEditTabLeaderType 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 TdxRichEditTabLeaderType.Hyphens (in Delphi) or TdxRichEditTabLeaderType::Hyphens (in C++Builder) to refer to the Hyphens value in code.

See Also