TableOfFigures.RightAlignPageNumbers property (Word)

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

Syntax

expression. RightAlignPageNumbers

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

Example

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

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

See also

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