我已经下载并开始使用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
}
}