Application.AutoCaptions Property

Word Developer Reference

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 an Application 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.

Visual Basic for Applications
  Dim captionLoop as AutoCaption

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

See Also