TableOfAuthorities.TabLeader Property

Word Developer Reference

Returns or sets the leader character that appears between entries and their associated page numbers in a table of authorities. Read/write WdTabLeader.

Syntax

expression.TabLeader

expression   Required. A variable that represents a TableOfAuthorities collection.

Example

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

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

See Also