Back to Devexpress

TdxRichEditTabLeaderType Enum

vcl-dxrichedit-dot-nativeapi-8ac3addc.md

latest2.5 KB
Original Source

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:

ValueDescriptionExample
NoneNo tab leader characters are displayed.
DotsThe dot is used as a tab leader character.
MiddleDotsThe middle dot (interpunct) is used as a tab leader character.
HyphensThe hyphen is used as a tab leader character.
UnderlineThe underscore is used as a tab leader character.
ThickLineThe thick line is used instead of tab leader characters.
EqualSignThe equal sign is used as a tab leader character.

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

dxRichEdit.NativeApi Unit