TablesOfAuthoritiesCategories 对象 (Word)
代表引文目录类别,如用例和条例表的 TableOfAuthoritiesCategory 对象的集合。 TablesOfAuthoritiesCategories 集合包括 索引和目录对话框中的 引文目录选项卡上的 类别框中列出的所有 16 种。
备注
使用 TablesOfAuthoritiesCategories 属性返回 TablesOfAuthoritiesCategories 集合。 下面的示例显示 TablesOfAuthoritiesCategories 集合中类别的名称。
For Each aCat In ActiveDocument.TablesOfAuthoritiesCategories
response = MsgBox(Prompt:=aCat, Buttons:=vbOKCancel)
If response = vbCancel Then Exit For
Next aCat
Add 方法不适用于 TablesOfAuthoritiesCategories 集合。 集合仅限于 16 项;但是,您可以使用 Name 属性来重命名现有的类别。
使用 TablesOfAuthoritiesCategories (索引) 的索引所在的类别名称或索引号,返回一个 TableOfAuthoritiesCategory 对象。 下面的示例重命名为其他规定的规则类别。
ActiveDocument.TablesOfAuthoritiesCategories("Rules").Name = _
"Other Provisions"
索引号代表 索引和目录对话框中类别的位置。 下面的示例显示 TablesOfAuthoritiesCategories 集合中的第一个类别的名称。
MsgBox ActiveDocument.TablesOfAuthoritiesCategories(1).Name
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。