ParagraphFirstLineIndent Enum
Lists values that specify the indent for the first line in a paragraph.
Declaration
export enum ParagraphFirstLineIndent {
None = 0,
Indented = 1,
Hanging = 2
}
Members
Name | Description |
---|---|
Hanging | The first line of a paragraph is indented to the left. |
Indented | The first line of a paragraph is indented to the right. |
None | The first line of a paragraph doesn't have any indent. |
Remarks
Values listed by this enumeration are used to set the firstLineIndentType and firstLineIndentType properties.
Feedback