2

我正在尝试编辑具有现有标题的 MS Word 文档的标题,使用win32com.
我试过这个来编辑页眉:

import win32com.client as win32

word = win32.gencache.EnsureDispatch('Word.Application')
doc=word.Documents.Open("C:\\a.docx")
word.Visible = True
word.ActiveDocument.Sections[0].Headers[win32.constants.wdHeaderFooterPrimary].Range.Text='test text'
word.ActiveDocument.Save()
doc.Close(False)
word.Application.Quit()

但它没有效果(标题根本没有改变)!
通过 win32com 编辑 MS Word 标题的正确方法是什么?

4

1 回答 1

4

在这一行中使用括号而不是方括号,以及从 1 开始的索引。COM 中的一切都是函数调用或属性。

word.ActiveDocument.Sections(1).Headers(win32.constants.wdHeaderFooterPrimary).Range.Text='test text'
于 2013-01-03T23:01:46.680 回答