PageNumberSeparator 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