ResetOnHigher Property

Applies To

ListLevel object.

Description

True if the specified list level restarts numbering at 1 following a higher list level. False if the numbering continues sequentially each time the list level appears. Read/write Boolean.

Remarks

This feature allows lists to be interleaved, maintaining numeric sequence.

See Also

SingleList property.

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