Paragraph.Outdent Method

Word Developer Reference

Removes one level of indent for one or more paragraphs.

Syntax

expression.Outdent

expression   Required. A variable that represents a Paragraph object.

Remarks

This method is equivalent to clicking the Decrease Indent button on the Formatting toolbar.

Example

This example indents all the paragraphs in the active document twice, and then it removes one level of the indent for the first paragraph.

Visual Basic for Applications
  With ActiveDocument.Paragraphs
    .Indent
    .Indent
End With
ActiveDocument.Paragraphs(1).Outdent

See Also