AutoCaptions Property

Microsoft Word Visual Basic

Returns an AutoCaptions collection that represents the captions that are automatically added when items such as tables and pictures are inserted into a document. Read-only.

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

Example

This example displays the name of each item that automatically gets a caption when inserted into the document.

Dim captionLoop as AutoCaption

For Each captionLoop In AutoCaptions
    If captionLoop.AutoInsert Then MsgBox captionLoop.Name
Next captionLoop