使用 OpenXML 从文档文件中查找表

本文关键字:查找 文件 文档 OpenXML 使用 | 更新日期: 2023-09-27 18:31:45

我想使用 c 尖锐代码中的 openxml 包编辑文档文件中表格行中的值。在这里,我显示了用于查找表的代码,但它给了我 null,如果我使用 default 而不是 firstordefault,那么它会给我异常,就像序列不包含任何元素一样。

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

谢谢。

使用 OpenXML 从文档文件中查找表

你可以使用这个:表表 = 文档。MainDocumentPart.Document.Descendants().FirstOrDefault();