Indent Method

Applies To

Paragraph object, Paragraphs collection object.

Description

Indents one or more paragraphs by one level.

Note Using this method is equivalent to clicking the Increase Indent button on the Formatting toolbar.

Syntax

expression.Indent

expression    expression that returns a Paragraph or Paragraphs object.

See Also

FirstLineIndent property, LeftIndent property, ListIndent method, Outdent method, RightIndent property, SelectCurrentIndent method, TabHangingIndent method.

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.

With ActiveDocument.Paragraphs
    .Indent
    .Indent
End With
ActiveDocument.Paragraphs(1).Outdent