Share via


Paragraph.RightIndent Property

Word Developer Reference

Returns or sets the right indent (in points) for the specified paragraph. Read/write Single.

Syntax

expression.RightIndent

expression   Required. A variable that represents a Paragraph object.

Example

This example sets the right indent for the first paragraph in the active document to 1 inch from the right margin. The InchesToPoints method is used to convert inches to points.

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

See Also