ParagraphFormat.ListNumberStart property (Publisher)

Sets or retrieves a Long that represents the starting number of a list. Read/write.

Syntax

expression.ListNumberStart

expression A variable that represents a ParagraphFormat object.

Return value

Long

Remarks

Returns an "Access Denied" message if the list is not a numbered list.

Example

This example sets the list type of a ParagraphFormat object to pbListTypeArabic (PbListType enumeration) and sets the ListNumber property to 4.

Dim objParaForm As ParagraphFormat 
 
Set objParaForm = ActiveDocument.Pages(1).Shapes(1) _ 
.TextFrame.TextRange.ParagraphFormat 
 
 With objParaForm 
 .SetListType pbListTypeArabic 
 .ListNumberStart = 4 
 End With 
 
End Sub

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.