Hi, is it possible to assign custom attributes to elements in document.xml,
that Word itself will ignore, so that I programmatically can find the exact
XmlNode I'm looking for.
(in this case a <w:tbl> table-element)
Eg.
foreach (XmlNode n in myXmlDocument.SelectNodes("//w:tbl", myNameSpaceManager))
{
foreach (XmlAttribute a in n.Attributes)
{
if (a.Name.Equals("MyCustomAttribute"))
// Do something
}
}