RightIndent Property
Applies To
Paragraph object, ParagraphFormat object, Paragraphs collection object.
Description
Returns or sets the right indent (in points) for the specified paragraphs. Read/write Single.
See Also
FirstLineIndent property, LeftIndent property, SelectCurrentIndent method, TabHangingIndent method, TabIndent method.
Example
This example sets the right indent for all paragraphs in the active document to 1 inch from the right margin. The InchesToPoints method is used to convert inches to points.
ActiveDocument.Paragraphs.RightIndent = InchesToPoints(1)