FormatProperties.FirstIndentThe left indent of the first line of the paragraph text. If FirstIndent is negative, there is an implied tab stop at the left indentExample = Block { Paragraph { FirstIndent: 16pt; RightIndent: 3"; SpaceAfter: 20pt; "The FirstIndent is used to indent the first line of a paragraph which is a typical style used frequently in documents and letters."; }; "The FirstIndent can also be used in numbered lists."; Block { // These attributes apply to all paragraphs in the block LeftIndent : 16pt; FirstIndent : -16pt; Paragraph { 1; Tab; "One"; }; Paragraph { 2; Tab; "Two"; }; };};The FirstIndent is used to indent the first line of a paragraph which is a typical style used frequently in documents and letters.The FirstIndent can also be used in numbered lists.1One2Two