使用 Python 更新 MS Word(或 Open Office)书签
我想从 python 脚本填充 MSWord 书签。 我在 win32com(MSWord) 或 PyUno(OpenOffice) 中找不到此类函数。
有谁知道如何使用Python书签?
I'd like to fill MSWord bookmarks from a python script.
I can't find such functions in win32com(MSWord) or in PyUno(OpenOffice).
Does anyone know how to use bookmarks from Python?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您在 win32com 中找不到这些函数,而是在您正在使用的 COM 对象的文档中找到它们。在本例中,这就是 Word.Application。
您可以看到 一些使用此 COM 对象创建书签的示例 Python 代码< /a>s。
最新的 Word 对象模型参考可在 MSDN 上找到
You don't find the functions in win32com, you find them in the documentation for the COM object that you are using. In this case that would be Word.Application.
You can see some sample Python code that uses this COM object to create bookmarks.
The most recent Word Object Model Reference is found here at MSDN
看看这个例子来解决你的问题:
Look at this example for your issue: