Edit

Share via


TableOfAuthorities.IncludeCategoryHeader property (Word)

True if the category name for a group of entries appears in the table of authorities. Read/write Boolean.

Syntax

expression. IncludeCategoryHeader

expression An expression that returns a 'TableOfAuthorities' object.

Remarks

Corresponds to the \h switch for a Table of Authorities (TOA) field.

Example

This example includes the category name for each table of authorities in the active document.

Dim toaLoop As TableOfAuthorities 
 
For Each toaLoop In ActiveDocument.TablesOfAuthorities 
 toaLoop.IncludeCategoryHeader = True 
Next toaLoop

See also

TableOfAuthorities Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.