Xml.XMLDoc.TXMLNodeList.Get

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function Get(Index: Integer): IXMLNode;

C++

Xml::Xmlintf::_di_IXMLNode __fastcall Get(int Index);

Properties

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

Description

Returns a specified node in the list.

Call Get to retrieve a node from the list, given its index.

Index specifies the node to fetch, where 0 identifies the first node, 1 identifies the second node, and so on. Index should be less than the value of the Count property.

See Also