Xml.XMLDoc.TXMLDocument.ChildNodes
Delphi
property ChildNodes: IXMLNodeList read GetChildNodes;
C++
__property Xml::Xmlintf::_di_IXMLNodeList ChildNodes = {read=GetChildNodes};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | public | Xml.XMLDoc.pas Xml.XMLDoc.hpp |
Xml.XMLDoc | TXMLDocument |
Description
Lists all of the child nodes of the document.
Use ChildNodes to access all of the nodes that are children of the document object. In addition to DocumentElement, which is the root of the data hierarchy, ChildNodes can include nodes for comments, processing instructions, and so on.
Note: ChildNodes is not available unless the XML document is Active.