Share via


TableOfFigures.IncludePageNumbers Property

Word Developer Reference

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

Syntax

expression.IncludePageNumbers

expression   Required. A variable that represents a TableOfFigures collection.

Example

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

Visual Basic for Applications
  If ActiveDocument.TablesOfFigures.Count >= 1 Then
    With ActiveDocument.TablesOfFigures(1)
        .IncludePageNumbers = True
        .RightAlignPageNumbers = True
    End With
End If

See Also