PageNumberSeparator Property

Applies To

TableOfAuthorities object.

Description

Returns of sets the characters (up to five) that separate individual page references in a table of authorities. The default is a comma and a space. Corresponds to the \l switch for a TOA (Table of Authorities) field. Read/write String.

See Also

Add method (TablesOfAuthorities collection), EntrySeparator property, PageRangeSeparator property.

Example

This example formats the tables of authorities in the active document to use a comma as the page separator (for example, "9,12").

For Each myTOA In ActiveDocument.TablesOfAuthorities
    myTOA.PageNumberSeparator = ","
Next myTOA