SingleListTemplate Property

Applies To

List object, ListFormat object.

Description

True if the entire List or ListFormat object uses the same list template. Read-only Boolean.

See Also

ApplyListTemplate method, ListTemplate object, SingleList property.

Example

This example checks to see whether the selection is formatted with a single list template. If so, the example applies the second numbered list template to the selection.

Set myList = Selection.Range.ListFormat
temp = myList.SingleListTemplate
If temp = True Then
    myList.ApplyListTemplate _
        ListTemplate:=ListGalleries(wdNumberGallery).ListTemplates(2)
End If