Returns a node list containing the children (for nodes that can have children).
objXMLDOMNodeList = oXMLDOMNode.childNodes
HRESULT get_childNodes( IXMLDOMNodeList **childList);
Object. The collection is read-only. Note that an XMLDOMNodeList object is returned even if there are no children of the node. In such a case, the length of the list will be set to 0. For information about valid child node types for each node, see the DOMNodeType enumeration.
This value depends on the value of the nodeType property.
NODE_ATTRIBUTE, NODE_DOCUMENT, NODE_DOCUMENT_FRAGMENT, NODE_ELEMENT, NODE_ENTITY, NODE_ENTITY_REFERENCE | Returns an XMLDOMNodeList that contains a list of all child nodes for the specified node. |
NODE_CDATA_SECTION, NODE_COMMENT, NODE_NOTATION, NODE_PROCESSING_INSTRUCTION, NODE_TEXT | Returns an XMLDOMNodeList with a length of 0. These node types cannot have children. |
NODE_DOCUMENT_TYPE | Returns an XMLDOMNodeList that contains a list of all child nodes for the XMLDOMDocumentType node. The node list for the document type node can contain entities and notations. |