XMLNode.NodeType (Word)
Devuelve una constante WdXMLNodeType que representa el tipo de nodo. Posibles valores de retorno son wdXMLNodeAttribute, wdXMLNodeElement.
Un objeto XmlNode puede ser un elemento XML o un atributo de un elemento.
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