expression.RightAlignPageNumbers
expression Required. An expression that returns one of the objects in the Applies To list.
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