Passim Property

Microsoft Word Visual Basic

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