Compartilhar via


TableOfFigures.Update Method

Word Developer Reference

Updates the entries shown in a table of figures.

Syntax

expression.Update

expression   Required. A variable that represents a TableOfFigures collection.

Remarks

Use the UpdatePageNumbers method to update the page numbers of items in a table of figures.

Example

This example updates the first table of figures in the active document.

Visual Basic for Applications
  If ActiveDocument.TablesOfFigures.Count >= 1 Then
    ActiveDocument.TableOfFigures(1).Update
End If

See Also