Back to Devexpress

TdxRichEditParagraphFirstLineIndent Enum

vcl-dxrichedit-dot-nativeapi-41861ae8.md

latest2.3 KB
Original Source

TdxRichEditParagraphFirstLineIndent Enum

Enumerates available indentation options that can be applied to the first paragraph line.

Declaration

delphi
TdxRichEditParagraphFirstLineIndent = (
    None,
    Indented,
    Hanging
);

Members

Name
None
Indented
Hanging

Remarks

Options include:

ValueDescriptionExample
NoneThe first line of a paragraph is displayed without any indent. The paragraph’s FirstLineIndent property value is ignored.
IndentedThe first line of a paragraph is indented to the right by the value specified by the paragraph’s FirstLineIndent property.
HangingThe first line of a paragraph is indented to the left by the value specified by the paragraph’s FirstLineIndent property.

The TdxRichEditParagraphFirstLineIndent type is referenced by the GetFirstLineIndentType and SetFirstLineIndentType methods, and the FirstLineIndentType property exposed by the IdxRichEditParagraph interface.

Note

TdxRichEditParagraphFirstLineIndent 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 TdxRichEditParagraphFirstLineIndent.Indented (in Delphi) or TdxRichEditParagraphFirstLineIndent::Indented (in C++Builder) to refer to the Indented value in code.

See Also

dxRichEdit.NativeApi Unit