Returns the node that matches the ID attribute.
var objXMLDOMNode = oXMLDOMDocument.nodeFromID(idString);
An object. Returns the node that matches the supplied ID. If no nodes match, returns Null.
Set objXMLDOMNode = oXMLDOMDocument.nodeFromID(idString)
An object. Returns the node that matches the supplied ID. If no nodes match, returns Null.
HRESULT nodeFromID( BSTR idString, IXMLDOMNode **node);
node
parameter is Null.According to the XML 1.0 Recommendation (REC-xml-19980210), ID attribute values must be unique within their XML documents and no element can specify more than one ID attribute.
The nodeFromID
method was designed to handle ID and IDREF relationships in XML, but does not require an attribute of type IDREF. It can be used generically, and is similar to the all
collection in DHTML.
To reference a node with nodefromID
, the node must be typed as ID in the schema or document type definition (DTD). Simply naming an attribute "ID
" does not set its data type.
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: DOMDocument