Xml.XMLDoc.TXMLNodeList
Delphi
TXMLNodeList = class(TInterfacedObject, IXMLNodeList)
C++
class PASCALIMPLEMENTATION TXMLNodeList : public System::TInterfacedObject
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
class | public | Xml.XMLDoc.pas Xml.XMLDoc.hpp |
Xml.XMLDoc | Xml.XMLDoc |
Description
TXMLNodeList represents a set of nodes in an XML document.
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.