CaptionLabels Property

Microsoft Word Visual Basic

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

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