ListIndent Property

Microsoft Publisher Visual Basic

ListIndent Property

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

expression.ListIndent

expression    Required. An expression that returns a ParagraphFormat object.

Example

This example sets the ListIndent property of a ParagraphFormat object to 0.25 inches. The InchesToPoints method is used to convert inches to points.

      Dim objParaForm As ParagraphFormat

Set objParaForm = ActiveDocument.Pages(1).Shapes(1) _
.TextFrame.TextRange.ParagraphFormat

With objParaForm
    .ListIndent = InchesToPoints(0.25)
End With