TablesOfAuthoritiesCategories Property

Applies To

Document object.

Description

Returns a TablesOfAuthoritiesCategories collection that represents the available table of authorities categories for the specified document. Read-only.

See Also

Name property, TablesOfAuthorities property.

Example

This example changes the name of the eighth item in the table of authorities category list for the active document.

ActiveDocument.TablesOfAuthoritiesCategories(8).Name = "Other case"
This example displays the name of the last table of authorities category if the category name has been changed.

last = ActiveDocument.TablesOfAuthoritiesCategories.Count
If ActiveDocument.TablesOfAuthoritiesCategories(last).Name <> "16" Then
    MsgBox ActiveDocument.TablesOfAuthoritiesCategories(last).Name
End If