ListLevels Property

Applies To

ListTemplate object.

Description

Returns a ListLevels collection that represents all the levels for the specified ListTemplate. Read-only.

See Also

ListLevelNumber property.

Example

This example sets the variable myListTemp to the first list template (excluding None) on the Outline Numbered tab in the Bullets and Numbering dialog box. Each level in the list has a matching heading style linked to it.

Set myListTemp = ListGalleries(wdOutlineNumberGallery).ListTemplates(1)
For Each mylevel In myListTemp.ListLevels
    mylevel.LinkedStyle = "Heading " & mylevel.index
Next mylevel