Xml.XMLIntf.IXMLNode.ChildNodes

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ChildNodes: IXMLNodeList read GetChildNodes;

C++

__property _di_IXMLNodeList ChildNodes = {read=GetChildNodes};

Properties

Type Visibility Source Unit Parent
property public
Xml.XMLIntf.pas
Xml.XMLIntf.hpp
Xml.XMLIntf IXMLNode

Description

Represents the child nodes of the node.

Use ChildNodes to access the children of a node. ChildNodes is an IXMLNodeList interface, which can be used to access individual child nodes or to add child nodes to or delete them from this node. Each child node specifies this node as its parent node.

Tip: To get or set the values of the child nodes rather than their interfaces, use the ChildValues property instead.

Note: Attributes are not considered child nodes of a node. To get the values of this node's attributes, use the Attributes or AttributeNodes property instead.

See Also