我正在尝试使用win32com
编辑包含现有标题的MS Word文档的标题
我试过这个来编辑页眉:
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标题的正确方法是什么?
答案 0 :(得分:4)
在此行中使用括号而不是方括号,以及基于1的索引。 COM中的所有内容都是函数调用或属性。
word.ActiveDocument.Sections(1).Headers(win32.constants.wdHeaderFooterPrimary).Range.Text='test text'