Share via


TableOfFigures.UseHeadingStyles Property

Word Developer Reference

True if built-in heading styles are used to create a table of figures. Read/write Boolean.

Syntax

expression.UseHeadingStyles

expression   Required. A variable that represents a TableOfFigures collection.

Example

This example adds a table of figures in place of the selection and then formats the table to compile entries from TC fields.

Visual Basic for Applications
  With ActiveDocument.TablesOfFigures.Add(Range:=Selection.Range)
    .UseHeadingStyles = False
    .UseFields = True
End With

See Also