Xml.XMLIntf.IXMLNodeList.Add
Delphi
function Add(const Node: IXMLNode): Integer;
C++
virtual int __fastcall Add(const _di_IXMLNode Node) = 0 ;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | public | Xml.XMLIntf.pas Xml.XMLIntf.hpp |
Xml.XMLIntf | IXMLNodeList |
Description
Adds a new node to the end of the list.
Call Add to add a node to the end of the list. Add returns the index of the node once it is added, where 0 is the index of the first node in the list, 1 is the index of the second node, and so on.
Node is the node to add to the list.