Returns the base name for the name qualified with the namespace.
strValue = oXMLDOMNode.baseName;
The following script example assigns the value of a node's baseName
property to a string, and then displays it.
var xmlDoc = new ActiveXObject("Msxml2.DOMDocument.5.0"); var MyStr; xmlDoc.async = false; xmlDoc.load("books.xml"); if (xmlDoc.parseError.errorCode <> 0) { var myErr = xmlDoc.parseError; alert("You have error " + myErr.reason); } else { MyStr = xmlDoc.documentElement.childNodes.item(1).baseName; alert(MyStr); }
strValue = oXMLDOMNode.baseName
The following Microsoft® Visual Basic® example assigns the value of a node's baseName
property to a string, and then displays it.
Dim xmlDoc As New Msxml2.DOMDocument50 Dim MyStr As String 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 MyStr = xmlDoc.documentElement.childNodes.Item(1).baseName MsgBox MyStr End If
HRESULT get_baseName( BSTR *nameString);
nameString
parameter is Null.String. The property is read-only. It returns the right-hand side of a namespace-qualified name. For example, it returns "yyy" for the element <xxx:yyy>. It always returns a nonempty string.
This member is an extension of the World Wide 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