ListLevel.StartAt property (Word)
Returns or sets the starting number for the specified ListLevel object. Read/write Long.
expression. StartAt
expression An expression that returns a 'ListLevel' object.
This example sets the number style and starting number for the third outline-numbered list template. Because the style uses uppercase letters and the starting number is 4, the first letter is D.
Set mylev = ListGalleries(wdOutlineNumberGallery) _
.ListTemplates(3).ListLevels(1)
With mylev
.NumberStyle = wdListNumberStyleUppercaseLetter
.StartAt = 4
End With
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.