我想使用c语言代码中的openxml包编辑doc文件中表格行中的值。在这里我展示了查找表的代码,但它给了我null,如果我使用default而不是firstordefault,那么它给了我异常,就像序列中没有元素一样。
DocumentFormat.OpenXml.Wordprocessing.Table table=doc.MainDocumentPart.Document.Body.Elements<DocumentFormat.OpenXml.Wordprocessing.Table>().FirstOrDefault();
感谢。
答案 0 :(得分:0)
你可以用这个: Table table = doc.MainDocumentPart.Document.Descendants()。FirstOrDefault();