1

Python および win32com クライアント コンポーネントを使用して、その内容 (最初の行の内容を除く) を削除することにより、Microsoft Word - 2010 テーブルを更新しようとしています。MSDN ライブラリ ( http://msdn.microsoft.com/en-us/library/bb244515.aspx ) を調べたところ、Delete がこれに役立つことがわかりました。(@ How to read contents of an Table in MS-Word file Using Python?も見てください。 )

..///

# delete row 1 of table 1
doc.Tables(1).Rows(1).Delete
# delete cell 1,1 of table 1
doc.Tables(1).Cell(1, 1).Delete

..///

ただし、上記の手順を実行しても、テーブルの行は削除されません (セル [1,1] も削除されません)。私が見逃しているものはありますか?どんな提案でも大歓迎です。

テーブルの内容をクリアするためのPython関数をここに貼り付けます

..//

def updateTable(name):

    #tell word to open the document
    word.Documents.Open (IP_Directory_Dest + "\\" + name)

    #open it internally (i guess...)
    doc = word.Documents(1)

##    doc.Content.Text = "This is the string to add to the document."
##    doc.Content.MoveEnd()

##    doc.Content.Select
##    doc.Tables(1).Rows(2).Select
##    Selection.InsertRowsBelow

##    doc.Tables [1]. Rows [1]. Cells [1]. Range.Text = '123123 '
##    doc.Tables [1]. Rows.Add () # add a line

    # specifically select TABLE # 1
    table = doc.Tables(1)
    # count the number of rows in TABLE # 1
    numRows = table.Rows.Count

    # count number of columns
    numCols = table.Columns.Count

    print ('Number of Rows in TABLE',numRows)
    print ('Number of Columns in TABLE',numCols)

    # print the row 1 of TABLE # 1 -- for checking
    print ('### 1 - CHECK this ONE ... ',table.Rows(1).Range.Text)

    # delete row 1 of table 1
    doc.Tables(1).Rows(1).Delete
    # delete cell 1,1 of table 1
    doc.Tables(1).Cell(1, 1).Delete

    # again count the number of rows in table
    numRows = table.Rows.Count

    print numRows

    # print the row 1 of TABLE # 1 -- after Deleting the first ROW --> for checking
    print ('### 2 - CHECK this ONE ... ',table.Rows(1).Range.Text)

    # get the number of tables
    numberTables = doc.Tables.Count
    # count the number of tables in document
    print numberTables

    #delete ALL tables
    tables = doc.Tables
    for table in tables:
        # to get  the content of Row # 1, Column # 1 of table
        print table.Cell(Row =1, Column = 1).Range.Text
##        table.Delete(Row =2)
        # this one deletes the whole table (which is not needed)
        #table.Delete()

    #re-save in IP folder
    doc.SaveAs(IP_Directory_Dest + "\\" + name)

    #close the stream
    doc.Close()

...///

コメントアウトされたセクションは無視してください(私も機能させようとしていました)

4

2 に答える 2

1

全て、

これが私が考え出したものです。それを修正するために書いたコードを共有します。

これを行っている間に、テーブルの内容 (特定の行と列) をクリアする方法、行を追加する方法、単語テーブルなどで列と行の数を取得する方法を学びました。また、Python/win32 (MSDN ライブラリを除く) に使用される API に関するドキュメントがあまりないため、これらの API に慣れるために考えた 1 つの方法は、VB コード (ほとんどが現在の @ MSDN http://msdn.microsoft.com/en-us/library/bb244515.aspx ) を参照し、python-win32 にも対応する同様のコードを作成してみてください。それが私の理解です。

..///

########################
#
#   Purpose : To update the Table contents present in file
#       @ name       : name of the document to process.
#       @ tableCount : Specific Table number to edit.
#
#######################

def updateTable(name,tableCount):

    #tell word to open the document
    word.Documents.Open (IP_Directory_Dest + "\\" + name)

    #open it internally
    doc = word.Documents(1)

    # answer to Question # 2 (how to update a specific cell in a TABLE)
    # clearing Table # 1, Row # 1, cell # 1 content
    doc.Tables (1). Rows (1). Cells (1). Range.Text = ''

    #Clearing Table # 1, Row # 1, Col # 4 content to blank
    doc.Tables (1). Cell(1, 4). Range.Text = ''

    # specifically select TABLE # tableCount
    table = doc.Tables(tableCount)
    # count the number of rows in TABLE # 1
    numRows = table.Rows.Count

    # count number of columns
    numCols = table.Columns.Count

    print ('Number of Rows in TABLE',numRows)
    print ('Number of Columns in TABLE',numCols)


    # NOTE : ROW # 1 WILL NOT BE DELETED, AS IT IS COMMON FOR BOTH IP AND IR
    # delete and add the same number of rows
    for row in range(numRows):
        # add a row at the end of table
        doc.Tables(tableCount).Rows.Add ()
        # delete row 2 of table (so as to make the effect of adding rows equal)
        doc.Tables(tableCount).Rows(2).Delete()


    #re-save in IP folder
    doc.SaveAs(IP_Directory_Dest + "\\" + name)

    #close the stream
    doc.Close()

..///

于 2013-04-19T06:46:19.030 に答える
0

行末に空の括弧を追加します。

doc.Tables(1).Rows(1).Delete()

これらの括弧は、メソッドを呼び出すために必要です。

于 2013-04-16T06:10:20.250 に答える