Global.AutoCaptions Property (Word)
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.
Syntax
expression .AutoCaptions
expression A variable that represents a Global object.
Remarks
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