AutoCaptions Property

Applies To

Application object, Global object.

Description

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.

See Also

AutoInsert property, CancelAutoInsert method, CaptionLabels property.

Example

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

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