Skip to content

Latest commit

 

History

History
46 lines (29 loc) · 1.01 KB

Word.TableOfFigures.RightAlignPageNumbers.md

File metadata and controls

46 lines (29 loc) · 1.01 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
TableOfFigures.RightAlignPageNumbers property (Word)
vbawd10.chm153157635
vbawd10.chm153157635
Word.TableOfFigures.RightAlignPageNumbers
0c9388b6-d6d7-9d41-547d-35d1345c1d38
06/08/2017
medium

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

[!includeSupport and feedback]