IncludePageNumbers Property

Microsoft Word Visual Basic

IncludePageNumbers Property

       

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

expression.IncludePageNumbers

expression   Required. An expression that returns one of the objects in the Applies To list.

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