TdxRichEditTabAlignmentType Enum
Enumerates available tab stop alignments.
Declaration
TdxRichEditTabAlignmentType = (
Left,
Center,
Right,
Decimal
);
Members
| Name |
|---|
Left
|
Center
|
Right
|
Decimal
|
Remarks
Options include:
| Value | Description | Example |
|---|---|---|
| Left | The left edge of text following the tab character is lined up with the tab stop. | ![]() |
| Center | The center of the text following the tab character is lined up with the tab stop. | ![]() |
| Right | The right edge of text following the tab character is lined up with the tab stop. | ![]() |
| Decimal | If the text following the tab character is a number with a decimal point, the decimal point is lined up with the tab stop. | ![]() |
The TdxRichEditTabAlignmentType type is referenced by the GetAlignment and SetAlignment methods and the Alignment property exposed by the IdxRichEditTabInfo interface.
Note
TdxRichEditTabAlignmentType 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 TdxRichEditTabAlignmentType.Right (in Delphi) or TdxRichEditTabAlignmentType::Right (in C++Builder) to refer to the Right value in code.
See Also



