使用openxml从doc文件中查找表

时间:2014-11-25 04:31:37

标签: c# openxml-sdk doc

我想使用c语言代码中的openxml包编辑doc文件中表格行中的值。在这里我展示了查找表的代码,但它给了我null,如果我使用default而不是firstordefault,那么它给了我异常,就像序列中没有元素一样。

DocumentFormat.OpenXml.Wordprocessing.Table table=doc.MainDocumentPart.Document.Body.Elements<DocumentFormat.OpenXml.Wordprocessing.Table>().FirstOrDefault();

感谢。

1 个答案:

答案 0 :(得分:0)

你可以用这个: Table table = doc.MainDocumentPart.Document.Descendants()。FirstOrDefault();