XMLNode.NodeType (Word)

Gibt eine wdXMLNodeType -Konstante zurück, die den Knotentyp darstellt. Mögliche Rückgabewerte sind wdXMLNodeAttribute, wdXMLNodeElement.

Ein XMLNODE -Objekt kann entweder ein XML-Element oder ein Attribut eines Elements sein.


Sub AddIDAttribute() 
 Dim objElement As XMLNode 
 Dim objAttribute As XMLNode 
 
 For Each objElement In ActiveDocument.XMLNodes 
 If objElement.NodeType = wdXMLNodeElement Then 
 If objElement.BaseName = "book" Then 
 
 Set objAttribute = objElement.Attributes _ 
 .Add("author", objElement.NamespaceURI) 
 
 objAttribute.NodeValue = "David Barber" 
 
 Exit For 
 End If 
 End If 
 Next 
End Sub