RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
IXMLNode.ChildNodes Property

Represents the child nodes of the node.

Pascal
property ChildNodes: IXMLNodeList;
C++
__property IXMLNodeList ChildNodes;

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.
 

Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!