Xml.XMLDoc.TXMLNodeList.Add

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function Add(const Node: IXMLNode): Integer;

C++

int __fastcall Add(const Xml::Xmlintf::_di_IXMLNode Node);

Properties

Type Visibility Source Unit Parent
function protected
Xml.XMLDoc.pas
Xml.XMLDoc.hpp
Xml.XMLDoc TXMLNodeList

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.

See Also