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
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. | ![]() |
| Dots | The dot is used as a tab leader character. | ![]() |
| MiddleDots | The middle dot (interpunct) is used as a tab leader character. | ![]() |
| Hyphens | The hyphen is used as a tab leader character. | ![]() |
| Underline | The underscore is used as a tab leader character. | ![]() |
| ThickLine | The thick line is used instead of tab leader characters. | ![]() |
| EqualSign | The 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





