Skip to main content

ParagraphFormattingSettings.firstLineIndentType Property

Specifies whether and how the paragraph’s first line is indented.

Declaration

firstLineIndentType: ParagraphFirstLineIndent

Property Value

Type Description
ParagraphFirstLineIndent

The first line indent type.

Remarks

If the firstLineIndentType property is set to a value different from None, the indent value of a paragraph is specified by the firstLineIndent property.

var firstLineIndentSettings = {
    firstLineIndentType: ASPx.ParagraphFirstLineIndent.Hanging,
    firstLineIndent: richEdit.unitConverter.pixelsToTwips(10)
};

richEdit.commands.changeParagraphFormatting.execute(firstLineIndentSettings);
See Also