Back to Devexpress

TdxRichEditTabAlignmentType Enum

vcl-dxrichedit-dot-nativeapi-3161e764.md

latest2.0 KB
Original Source

TdxRichEditTabAlignmentType Enum

Enumerates available tab stop alignments.

Declaration

delphi
TdxRichEditTabAlignmentType = (
    Left,
    Center,
    Right,
    Decimal
);

Members

Name
Left
Center
Right
Decimal

Remarks

Options include:

ValueDescriptionExample
LeftThe left edge of text following the tab character is lined up with the tab stop.
CenterThe center of the text following the tab character is lined up with the tab stop.
RightThe right edge of text following the tab character is lined up with the tab stop.
DecimalIf 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

dxRichEdit.NativeApi Unit