ListTemplate.ListLevels property (Word)

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

Syntax

expression. ListLevels

expression An expression that returns a 'ListTemplate' object.

Remarks

For information about returning a single member of a collection, see Returning an object from a collection.

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 (Format menu). 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

See also

ListTemplate Object

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.