Xml.XMLIntf.IXMLNodeList.Get

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function Get(Index: Integer): IXMLNode;

C++

virtual _di_IXMLNode __fastcall Get(int Index) = 0 ;

Properties

Type Visibility Source Unit Parent
function public
Xml.XMLIntf.pas
Xml.XMLIntf.hpp
Xml.XMLIntf IXMLNodeList

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