Skip to content

Latest commit

 

History

History
59 lines (34 loc) · 1.53 KB

Word.Document.TablesOfAuthoritiesCategories.md

File metadata and controls

59 lines (34 loc) · 1.53 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Document.TablesOfAuthoritiesCategories property (Word)
vbawd10.chm158007334
vbawd10.chm158007334
Word.Document.TablesOfAuthoritiesCategories
c7daaf7a-6002-8377-ff68-18335f441baf
06/08/2017
medium

Document.TablesOfAuthoritiesCategories property (Word)

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

Syntax

expression. TablesOfAuthoritiesCategories

expression A variable that represents a Document object.

Remarks

For information about returning a single member of a collection, see Returning an object from a collection.

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

See also

Document Object

[!includeSupport and feedback]