EntrySeparator Property
Applies To
TableOfAuthorities object.
Description
Returns or sets the characters (up to five) that separate a table of authorities entry and its page number. The default is a tab character with a dotted leader. Corresponds to the \e switch for a TOA (Table of Authorities) field. Read/write String.
See Also
Add method (TablesOfAuthorities collection), PageNumberSeparator property.
Example
This example inserts a table of authorities into the active document and then formats the table to use a comma between the entries and their corresponding page numbers.
Set myRange = ActiveDocument.Range(Start:=0, End:=0)
ActiveDocument.TablesOfAuthorities.Add Range:=myRange, Category:=1
For Each aToa In ActiveDocument.TablesOfAuthorities
aToa.EntrySeparator = ", "
Next aToa
This example returns the entry separator for the first table of authorities.
entrysep = ActiveDocument.TablesOfAuthorities(1).EntrySeparator