Application.CaptionLabels property (Word)

Returns a CaptionLabels collection that represents all the available caption labels. Read-only.

Syntax

expression. CaptionLabels

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 sets the numbering style for table captions.

CaptionLabels(wdCaptionTable).NumberStyle = _ 
 wdCaptionNumberStyleLowercaseRoman

This example adds a new caption label named "Photo" and then inserts a photo caption.

CaptionLabels.Add Name:="Photo" 
With Selection 
 .InsertParagraphAfter 
 .InsertCaption Label:="Photo" 
End With

See also

Application Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.