Compartir a través de


TableOfFigures.TabLeader Property

Word Developer Reference

Returns or sets the character between entries and their page numbers in an table of figures. Read/write WdTabLeader.

Syntax

expression.TabLeader

expression   Required. A variable that represents a TableOfFigures collection.

Example

This example formats the tables of firgures in Sales.doc to use a dotted tab leader.

Visual Basic for Applications
  For Each aTOF In Documents("Sales.doc").TablesOfFigures
    aTOF.TabLeader = wdTabLeaderDots
Next aTOF

See Also