KeepEntryFormatting Property

Applies To

TableOfAuthorities object.

Description

True if formatting from table of authorities entries is applied to the entries in the specified table of authorities. Corresponds to the \f switch for a TOA (Table of Authorities) field. Read/write Boolean.

See Also

Add method (TablesOfAuthorities collection).

Example

This example removes the formatting from the entries in the first table of authorities in the active document (the \f switch is added to the TOA field).

If ActiveDocument.TablesOfAuthorities.Count >= 1 Then
    ActiveDocument.TablesOfAuthorities(1).KeepEntryFormatting = False
End If