TableOfAuthorities.TabLeader Property (Word)
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.
For Each aTOA In Documents("Sales.doc").TablesOfAuthorities
aTOA.TabLeader = wdTabLeaderDots
Next aTOA