我已下载并开始使用
DocX library.我有一个名为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
}
}
最佳答案 我自己找到了解决方案.
既然,document.Tables是一个列表,我可以像这样调用它:
Table t = document.Tables[3]; // I found out that the table index is actually 3;