TdxRichEditParagraphFirstLineIndent Enum
In This Article
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:
Value | Description | Example |
---|---|---|
None | The first line of a paragraph is displayed without any indent. The paragraph’s First |
![]() |
Indented | The first line of a paragraph is indented to the right by the value specified by the paragraph’s First |
![]() |
Hanging | The first line of a paragraph is indented to the left by the value specified by the paragraph’s First |
![]() |
The TdxRichEditParagraphFirstLineIndent type is referenced by the GetFirstLineIndentType and SetFirstLineIndentType methods, and the FirstLineIndentType property exposed by the IdxRichEditParagraph 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 Indented
value in code.
See Also