Share via


LeftIndent Property [Publisher 2003 VBA Language Reference]

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

expression.LeftIndent

expression Required. An expression that returns one of the objects in the Applies To list.

Example

This example indents one-half inch the paragraph at the cursor position. This example assumes the insertion point is in a text box.

Sub IndentParagraph()
    Selection.TextRange.ParagraphFormat.LeftIndent = 36
End Sub

Applies to | ParagraphFormat Object