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
}
}