ListLevel.ResetOnHigher property (Word)
Sets or returns the list level that must appear before the specified list level restarts numbering at 1. Read/write Long.
Syntax
expression. ResetOnHigher
expression An expression that returns a 'ListLevel' object.
Remarks
The ResetOnHigher property returns False if the numbering continues sequentially each time the list level appears.
This feature allows lists to be interleaved, maintaining numeric sequence. You cannot set the ResetOnHigher property of a list level to a value greater than or equal to its index in the ListLevels collection.
Example
This example sets each of the nine list levels in the first outline-numbered list template to continue its sequential numbering whenever that level is used.
For Each li In _
ListGalleries(wdOutlineNumberGallery) _
.ListTemplates(1).ListLevels
li.ResetOnHigher = False
Next li
See also
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.