KeepEntryFormatting Property 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