Global.CaptionLabels Property (Word)
Returns a CaptionLabels collection that represents all the available caption labels. Read-only.
Syntax
expression .CaptionLabels
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 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