getElementsByTagName Method (DOMDocument) (Windows CE 5.0)

Send Feedback

Returns a collection of elements that have the specified name.

[Script]

Script Syntax

var objXMLDOMNodeList=oXMLDOMDocument.getElementsByTagName(tagName);

Script Parameters

  • tagName
    String specifying the element name to find. The tagName "*" returns all elements in the document.

Script Return Value

Object. Points to a collection of elements that match the specified name.

[C/C++]

C/C++ Syntax

HRESULT getElementsByTagName(BSTRtagName,IXMLDOMNodeList** resultList);

C/C++ Parameters

  • tagName
    [in] Element name to find. The tagname "*" returns all elements in the document.
  • resultList
    [out, retval] Address of a collection of elements that match the specified name.

C/C++ Return Values

  • S_OK
    Value returned if successful.

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: Msxml2.h, Msxml2.idl.
Link Library: Uuid.lib.

General Remarks

This method is only valid if the XML Query Language (XQL) feature has been included in the operating system (OS). If a call to this method is made and XQL is not supported, an error message will be returned.

The elements in the collection are returned in the order in which they would be encountered in a preorder traversal of the document tree. In a preorder traversal, the parent root node is visited first and each child node from left to right is then traversed.

The returned IXMLDOMNodeList object is live and immediately reflects changes to the nodes that appear in the list.

More complex searches can be performed using the selectNodes Method. This method can also be faster in some cases.

This method applies to the following objects and interfaces:

DOMDocument and IXMLDOMNodeList.

See Also

selectNodes Method

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.