TableOfContents.IncludePageNumbers property (Word)

True if page numbers are included in the table of contents. Read/write Boolean.

Syntax

expression. IncludePageNumbers

expression Required. A variable that represents a 'TableOfContents' collection.

Example

This example formats the first table of contents in the active document to include right-aligned page numbers.

If ActiveDocument.TablesOfContents.Count >= 1 Then 
 With ActiveDocument.TablesOfContents(1) 
 .IncludePageNumbers = True 
 .RightAlignPageNumbers = True 
 End With 
End If

See also

TableOfContents 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.