ListFormat object (Word)
Represents the list formatting attributes that can be applied to the paragraphs in a range.
Remarks
Use the ListFormat property to return the ListFormat object for a range. The following example applies the default bulleted list format to the selection.
Selection.Range.ListFormat.ApplyBulletDefault
An easy way to apply list formatting is to use the ApplyBulletDefault, ApplyNumberDefault, and ApplyOutlineNumberDefault methods, which correspond, respectively, to the first list format (excluding None) on each tab in the Bullets and Numbering dialog box.
To apply a format other than the default format, use the ApplyListTemplate method, which allows you to specify the list format (list template) you want to apply.
Use the List or ListTemplate property to return the list or list template from the first paragraph in the specified range.
Use the ListFormat property with a Range object to access the list formatting properties and methods available for the specified range. The following example applies the default bulleted list format to the second paragraph in the active document.
ActiveDocument.Paragraphs(2).Range.ListFormat.ApplyBulletDefault
However, if there is already a list defined in your document, you can access a List object by using the Lists property. The following example changes the format of the list created in the preceding example to the first number format on the Numbered tab in the Bullets and Numbering dialog box.
ActiveDocument.Lists(1).ApplyListTemplate _
ListTemplate:=ListGalleries(2).ListTemplates(1)
Methods
Properties
Name |
---|
Application |
Creator |
List |
ListLevelNumber |
ListPictureBullet |
ListString |
ListTemplate |
ListType |
ListValue |
Parent |
SingleList |
SingleListTemplate |
See also
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.