TableOfAuthorities.Passim Property

Word Developer Reference

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."

Visual Basic for Applications
  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."

Visual Basic for Applications
  For Each myTOA In ActiveDocument.TablesOfAuthorities
    myToa.Passim = True
Next myTOA

See Also