将Word文档的整个TOC存储到字符串中

时间:2016-01-04 06:55:02

标签: vba ms-word word-vba tableofcontents

我想创建一个VBA程序来复制"目录的所有内容" word文档并将其存储在字符串中。

这是我迄今为止所尝试的。它读取第一行,然后使用循环输出:

Dim temp As TableOfContents 

Dim Strtemp As String

For Each temp In ActiveDocument.TablesOfContents
    Strtemp = temp.Range.Text
Next temp

0 个答案:

没有答案