4

DocX ライブラリをダウンロードして使い始めました。template.docxメモリにロードされているというドキュメントがあります。そのドキュメントには、id = 241. そのテーブルを ID で取得し、行を追加したいと考えています。これどうやってするの?これが私のコードです:

using (DocX document = DocX.Load("template.docx"))
{
    int tableId = 241, i = 0;
    Table t = //here I need to find the table

    foreach(DataGridViewRow row in produseFacturate.Rows)
    {
         i++;

         //here I want to add rows to the table
    }
}
4

1 に答える 1

2

私は自分で解決策を見つけました。

はリストなので、document.Tables次のように呼び出すことができます。

Table t = document.Tables[3]; // I found out that the table index is actually 3;
于 2013-04-13T08:48:52.690 に答える