Passim Property

Applies To

TableOfAuthorities object.

Description

True if five or more page references to the same authority are replaced with "Passim." Corresponds to the \p switch for a TOA (Table of Authorities) field. Read/write Boolean.

See Also

Add method (TablesOfAuthorities collection).

Example

This example formats the first table of authorities in Brief.doc to use page references instead of "Passim."

Documents("Brief.doc").TablesOfAuthorities(1).Passim = False
This example formats the tables of authorities in the active document to replace each instance of five or more page references for the same entry with "Passim."

For Each myTOA In ActiveDocument.TablesOfAuthorities
    myToa.Passim = True
Next myTOA