RightAlignPageNumbers Property

Applies To

Index object, TableOfContents object, TableOfFigures object.

Description

True if page numbers are aligned with the right margin in an index, table of contents, or table of figures. Read/write Boolean.

See Also

IncludePageNumbers property, TabLeader property.

Example

This example right aligns page numbers for the first table of contents in the active document.

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