Document.TablesOfContents property (Word)
Returns a TablesOfContents collection that represents the tables of contents in the specified document. Read-only.
Syntax
expression. TablesOfContents
expression A variable that represents a Document object.
Remarks
For information about returning a single member of a collection, see Returning an object from a collection.
Example
This example adds a table of contents at the beginning of Sales.doc. The table of contents collects entry text from TC fields.
Set myRange = Documents("Sales.doc").Range(Start:=0, End:=0)
Documents("Sales.doc").TablesOfContents.Add Range:=myRange, _
UseFields:=True, UseHeadingStyles:=False
This example updates the page numbers for items in the table of contents in the active document.
For Each myTOC In ActiveDocument.TablesOfContents
myTOC.UpdatePageNumbers
Next myTOC
See also
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.