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