TablesOfFigures Property
Applies To
Document object.
Description
Returns a TablesOfFigures collection that represents the tables of figures in the specified document. Read-only.
See Also
Add method (TablesOfFigures collection), TablesOfContents property.
Example
This example adds a table of figures at the insertion point in the active document.
Selection.Collapse Direction:=wdCollapseStart
ActiveDocument.TablesOfFigures.Add Range:=Selection.Range, _
Caption:=wdCaptionFigure
This example updates the contents of the first table of figures in Report.doc.
Documents("Report.doc").TablesOfFigures(1).Update