ParagraphFormat.ListIndent property (Publisher)

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

Syntax

expression.ListIndent

expression A variable that represents a ParagraphFormat object.

Return value

Single

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 

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.