Skip to main content

TdxRichEditParagraphFirstLineIndent Enum

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

Declaration

TdxRichEditParagraphFirstLineIndent = (
    None,
    Indented,
    Hanging
);

Members

Name
None
Indented
Hanging

Remarks

Options include:

Value Description Example
None The first line of a paragraph is displayed without any indent. The paragraph’s FirstLineIndent property value is ignored.
Indented The first line of a paragraph is indented to the right by the value specified by the paragraph’s FirstLineIndent property.
Hanging The 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