Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 OpenXML Sdk 作为库读取 document.xml 文件内容。我尝试阅读它,但是在 MainDocumentPart.Document 的对象中省略了一些标签,例如
<w:noproof/> and <w:footnotereference id="1"/>
请帮我解决一下这个。
在 openxmlsdk 中,如果您使用通用类 OpenxmlElement 而不是 Paragraph 类,则相应的对象会避免显示类似的标签<w:noproof/> and <w:footnotereference id="1"/> 所以我们需要使用相应的类来从 Openxml Sdk 中的元素中获取所需的所有内容。在这种情况下,如果你使用段落类,你可以得到它下面的元素。