Skip to content

Latest commit

 

History

History
47 lines (29 loc) · 1.15 KB

Publisher.ParagraphFormat.ListIndent.md

File metadata and controls

47 lines (29 loc) · 1.15 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
ParagraphFormat.ListIndent property (Publisher)
vbapb10.chm5439522
vbapb10.chm5439522
Publisher.ParagraphFormat.ListIndent
b42000ea-0636-88cf-b7ed-c71384a2b0d5
06/12/2019
medium

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 

[!includeSupport and feedback]