Paragraphs.LeftIndent Property

Word Developer Reference

Returns or sets a Single that represents the left indent value (in points) for the specified paragraphs. Read/write.

Syntax

expression.LeftIndent

expression   A variable that represents a Paragraphs collection.

Example

This example sets the left indent of all paragraphs in the active document to 1 inch. The InchesToPoints method is used to convert inches to points.

Visual Basic for Applications
  ActiveDocument.Paragraphs.LeftIndent = InchesToPoints(1)

See Also