CharacterUnitFirstLineIndent Property Example

This example sets a first-line indent of one character for the first paragraph in the active document.

ActiveDocument.Paragraphs(1) _
    .CharacterUnitFirstLineIndent = 1

This example sets a hanging indent of 1.5 characters for the second paragraph in the active document.

ActiveDocument.Paragraphs(2) _
    .CharacterUnitFirstLineIndent = -1.5