Microsoft XML SDK 2.6 - XML Reference

IXMLDOMDocument::nodeFromID Method

Returns the node whose ID attribute matches the supplied value.

Visual Basic Syntax

Set objXMLDOMNode = oXMLDOMDocument.nodeFromID(idString)

C/C++ Syntax

HRESULT nodeFromID(
    BSTR idString,
    IXMLDOMNode **node);

Parameters

idString [in]
Value of the ID to match.
node [out]
Node that matches the supplied ID. If no nodes match, this method returns Null.

C/C++ Return Values

S_OK
Value returned if successful.
S_FALSE
Value returned when there is no node with the given ID.
E_INVALIDARG
Value returned if node is Null.

Remarks

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.

This method was designed to handle ID/IDREF relationships in XML but does not require an attribute of type IDREF. It can be used generically in a way similar to the all collection in DHTML.

To reference a node with nodefromID, the node must by typed as ID in the schema or DTD—simply naming an attribute "ID" doesn't set its data type.

This member is an extension of the W3C DOM.

See Also

IXMLDOMDocument Interface