有没有办法通过Visual Basic删除word文档中某个部分的所有内容 - 表格,图像,文本等?
答案 0 :(得分:0)
您需要引用Microsoft.Office.Interop.Word
这样你就可以创建一个新的单词应用程序。
Dim oWordObj as Word.Application = CreateObject("Word.Application")
从那里你可以获取必要的word文档
Dim oDoc as Word.Document = //Grab your document here
从那里,有许多容易搜索的方法来修改文档。开始研究这个,你应该找到你需要的东西。