XMLNode.NodeType Property

Definition

Returns a WdXMLNodeType constant that represents the type of node.

public:
 property Microsoft::Office::Interop::Word::WdXMLNodeType NodeType { Microsoft::Office::Interop::Word::WdXMLNodeType get(); };
public Microsoft.Office.Interop.Word.WdXMLNodeType NodeType { get; }
member this.NodeType : Microsoft.Office.Interop.Word.WdXMLNodeType
Public ReadOnly Property NodeType As WdXMLNodeType

Property Value

Remarks

WdXMLNodeType can be one of the following wdXMLNodeType constants:

wdXMLNodeAttribute – Indicates an attribute node.

wdXMLNodeElement – Indicates an element node.

A XMLNode object can be either an XML element or an attribute of an element. Use the NodeType property to determine which type of node you are working with so that you don't attempt to perform invalid operations on the node. For example, the Attributes property applies only to element nodes, although it will appear in the list of available properties for the XMLNode object.

Applies to