TableOfAuthorities.Passim Property (Word)
True if five or more page references to the same authority are replaced with "Passim." Read/write Boolean.
Syntax
expression .Passim
expression An expression that returns a TableOfAuthorities object.
Remarks
Corresponds to the \p switch for a Table of Authorities (TOA) field.
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