Returns the node type in string form.
strValue = oXMLDOMNode.nodeTypeString;
The following script example creates an IXMLDOMNode object and displays its node type in string form, in this case, "element".
var xmlDoc = new ActiveXObject5.0("Msxml2.DOMDocument.5.0");
var currNode;
xmlDoc.async = false;
xmlDoc.load("books.xml");
if (xmlDoc.parseError.errorCode <> 0) {
var myErr = xmlDoc.parseError;
alert("You have error " + myErr.reason);
} else {
currNode = xmlDoc.documentElement.childNodes.item(0);
alert(currNode.nodeTypeString);
}
strValue = oXMLDOMNode.nodeTypeString
The following Microsoft® Visual Basic® example creates an IXMLDOMNode object and displays its node type in string form, in this case, "element".
Dim xmlDoc As New Msxml2.DOMDocument50
Dim currNode As IXMLDOMNode
xmlDoc.async = False
xmlDoc.Load ("books.xml")
If (xmlDoc.parseError.errorCode <> 0) Then
Dim myErr
Set myErr = xmlDoc.parseError
MsgBox("You have error " & myErr.reason)
Else
Set currNode = xmlDoc.documentElement.childNodes.Item(0)
MsgBox currNode.nodeTypeString
End If
HRESULT get_nodeTypeString(
BSTR *nodeType);
nodeType parameter is Null.String. The property is read-only. It contains the string version of the node type. To return the enumeration value, use the nodeType property.
This value depends on the value of the nodeType property.
| NODE_ATTRIBUTE | attribute |
| NODE_CDATA_SECTION | cdatasection |
| NODE_COMMENT | comment |
| NODE_DOCUMENT | document |
| NODE_DOCUMENT_FRAGMENT | documentfragment |
| NODE_DOCUMENT_TYPE | documenttype |
| NODE_ELEMENT | element |
| NODE_ENTITY | entity |
| NODE_ENTITY_REFERENCE | entityreference |
| NODE_NOTATION | notation |
| NODE_PROCESSING_INSTRUCTION | processinginstruction |
| NODE_TEXT | text |
This member is an extension of the Worldwide Web Consortium (W3C) Document Object Model (DOM).
To view reference information for Visual Basic, C/C++, or Script only, click the Language Filter button
in the upper-left corner of the page.
Applies to: IXMLDOMAttribute | IXMLDOMCDATASection | IXMLDOMCharacterData | IXMLDOMComment | DOMDocument | IXMLDOMDocumentFragment | IXMLDOMDocumentType | IXMLDOMElement | IXMLDOMEntity | IXMLDOMEntityReference | IXMLDOMNode | IXMLDOMNotation | IXMLDOMProcessingInstruction | IXMLDOMText