Skip to content

Latest commit

 

History

History
46 lines (29 loc) · 1023 Bytes

Word.TableOfFigures.IncludePageNumbers.md

File metadata and controls

46 lines (29 loc) · 1023 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
TableOfFigures.IncludePageNumbers property (Word)
vbawd10.chm153157639
vbawd10.chm153157639
Word.TableOfFigures.IncludePageNumbers
cc363160-c1bd-b6a2-75e0-4c201db57ded
06/08/2017
medium

TableOfFigures.IncludePageNumbers property (Word)

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.

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]