如何使用OpenXML Sdk作为库来读取document.xml文件内容。 我尝试阅读它,但在MainDocumentPart.Document的对象中省略了一些标签,如
<w:noproof/> and <w:footnotereference id="1"/>
请帮助我。
答案 0 :(得分:0)
在openxmlsdk中,如果使用泛型类OpenxmlElement而不是Paragraph类,相应的对象将避免显示像<w:noproof/> and <w:footnotereference id="1"/>
这样的标记
所以我们需要使用各自的类来获取Openxml Sdk中Element所需的所有内容。
在这种情况下,如果使用段落类,则可以获取其下的元素。