RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
TXMLNodeList Class

TXMLNodeList represents a set of nodes in an XML document.

Pascal
TXMLNodeList = class(TInterfacedObject, IXMLNodeList);
C++
class TXMLNodeList : public TInterfacedObject, public IXMLNodeList;

TXMLNodeList is used to represent a set of related nodes (IXMLNode interfaces) in an XML document. For example, TXMLNodeList is used to represent all of the children of a node, or all of the attributes of a node, or all of the nodes in a collection of repeating nodes. 

TXMLNodeList can be used to add or delete nodes from the collection, or to access specific nodes. 

Typically, applications do not use TXMLNodeList directly. Instead, they access it through the IXMLNodeList interface. 

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!