TdxRichEditTabLeaderType Enum
In This Article
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
|
Middle
|
Hyphens
|
Underline
|
Thick
|
Equal
|
#Remarks
Options include:
Value | Description | Example |
---|---|---|
None | No tab leader characters are displayed. | |
Dots | The dot is used as a tab leader character. | |
Middle |
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. | |
Thick |
The thick line is used instead of tab leader characters. | |
Equal |
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
Tdx
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 Tdx
(in Delphi) or Tdx
(in C++Builder) to refer to the Hyphens
value in code.
See Also