OpemXML 命名空间
如何获取 OpenXML 标准中特定节点的名称空间?
以下是使用它们的示例:
NameTable nt = new NameTable();
XmlNamespaceManager nsManager1 = new XmlNamespaceManager(nt);
nsManager1.AddNamespace("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
但
我仍然需要知道她如何/从哪里获取架构 URI。
有人能指出我正确的方向吗?
-nomad311
How do I get the namespaces of specific nodes in the OpenXML standard?
Here is an example of using them:
NameTable nt = new NameTable();
XmlNamespaceManager nsManager1 = new XmlNamespaceManager(nt);
nsManager1.AddNamespace("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
BUT
I still need to know how / where she gets the schema URIs from.
Could someone point me in the right direction?
-nomad311
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
任何 OOXML 文档都将在包内的 document.xml 顶部包含使用的名称空间。
您应该始终参考规范,但是这里有一个简短的列表。
Any OOXML-document is going to contain the used namespaces in the top of document.xml within the package.
You should always refer to specifications, but here's a short list.