0

我想从 python 脚本中填充 MSWord 书签。我在 win32com(MSWord) 或 PyUno(Op​​enOffice) 中找不到这样的功能。

有谁知道如何使用 Python 中的书签?

4

2 回答 2

1

您在 win32com 中找不到这些函数,而是在您正在使用的 COM 对象的文档中找到它们。在这种情况下,这将是 Word.Application。

您可以看到一些使用此 COM 对象创建书签的示例 Python 代码。

最新的Word 对象模型参考可在 MSDN 上找到

于 2009-11-04T16:54:43.550 回答
0

查看此示例以解决您的问题:

def addText(self, bookmark):
    self.wordApp.ActiveDocument.Bookmarks(bookmark).Select()
    self.wordApp.Selection.TypeText(self.some_text)

# from pandas data frame into word table 
def addTable(self, bookmark, df):
    self.wordApp.ActiveDocument.Bookmarks(bookmark).Select()
     table = location.Tables.Add(location, len(df) + 1, len(df.columns), 1, 1)
    table.AutoFormat(40)
    for i, item in enumerate(df):
        table.Cell(1, i + 1).Range.InsertAfter(item)
        table.Cell(1, i + 1).Range.ParagraphFormat.Alignment = 1
    sel.SelectRow()
    sel.BoldRun()
    table.Rows(1).HeadingFormat = True
    for c in range(2, len(df) + 2):
        for r in range(1, len(df.columns) + 1):
            table.Cell(c, r).Range.ParagraphFormat.Alignment = 1
            if pd.isnull(df.ix[c - 2][r - 1]):
                continue
            table.Cell(c, r).Range.InsertAfter(df.ix[c - 2, r - 1])
于 2014-07-30T06:38:07.893 回答