Contains the root element of the document.
var objXMLDOMElement = oXMLDOMDocument.documentElement; objXMLDOMDocument.documentElement = objXMLDOMElement;
The following script example creates an IXMLDOMElement object and sets it to the root element of the document with the documentElement property. It then walks the document tree.
var xmlDoc = new ActiveXObject("Msxml2.DOMDocument.5.0");
var root;
xmlDoc.async = false;
xmlDoc.load("books.xml");
if (xmlDoc.parseError.errorCode <> 0) {
var myErr = xmlDoc.parseError;
alert("You have error " + myErr.reason);
} else {
root = xmlDoc.documentElement;
for (var i=0; i<root.childNodes.length; i++) {
alert(root.childNodes.item(i).childNodes.item(0).text);
}
}
Set objXMLDOMElement = oXMLDOMDocument.documentElement Set objXMLDOMDocument.documentElement = objXMLDOMElement
The following Microsoft® Visual Basic® example creates an IXMLDOMElement object and sets it to the root element of the document with the documentElement property. It then walks the document tree.
Dim xmlDoc As New Msxml2.DOMDocument50
Dim root As IXMLDOMElement
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 root = xmlDoc.documentElement
For i = 0 To (root.childNodes.length - 1)
MsgBox root.childNodes.Item(i).childNodes.Item(0).Text
Next
End If
HRESULT get_documentElement(
IXMLDOMElement** DOMElement);
HRESULT putref_documentElement(
IXMLDOMElement* DOMElement);
IXMLDOMElement object that represents the single element representing the root of the XML document tree. Returns Null if no root exists.get_documentElement only)get_documentElement only)DOMElement parameter is Null.The property is read/write. It returns an IXMLDOMElement that represents the single element that represents the root of the XML document tree. It returns Null if no root exists.
When setting the documentElement property, the specified element node is inserted into the child list of the document after any document type node. To precisely place the node within the children of the document, call the insertBefore method of the IXMLDOMNode.
The parentNode property is reset to the document node as a result of this operation.
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.
insertBefore Method | IXMLDOMElement | IXMLDOMNode | parentNode Property
Applies to: DOMDocument