Compartir a través de


ListLevel.ResetOnHigher Property

Word Developer Reference

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.

Visual Basic for Applications
  For Each li In _
        ListGalleries(wdOutlineNumberGallery) _
        .ListTemplates(1).ListLevels
    li.ResetOnHigher = False
Next li

See Also