LeftIndent Property

Microsoft Publisher Visual Basic

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