ListGallery Object

Word Developer Reference

Represents a single gallery of list formats. The ListGallery object is a member of the ListGalleries collection.

Remarks

Each ListGallery object represents one of the three tabs in the Bullets and Numbering dialog box.

Use ListGalleries(Index), where Index is wdBulletGallery, wdNumberGallery, or wdOutlineNumberGallery, to return a single ListGallery object.

The following example returns the third list format (excluding None) on the Bulleted tab in the Bullets and Numbering dialog box and then applies it to the selection.

Visual Basic for Applications
  Set temp3 = ListGalleries(wdBulletGallery).ListTemplates(3)
Selection.Range.ListFormat.ApplyListTemplate ListTemplate:= temp3

To see whether the specified list template contains the formatting built into Word, use the Modified property for the ListGallery object. To reset formatting to the original list format, use the Reset method for the ListGallery object.

See Also