Passim Property

Microsoft Word Visual Basic

Passim Property

       

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

expression.Passim

expression   Required. An expression that returns a TableOfAuthorities object.

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