Xml.XMLIntf.IXMLNodeList

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

IXMLNodeList = interface

C++

__interface  INTERFACE_UUID("{395950C1-7E5D-11D4-83DA-00C04F60B2DD}") IXMLNodeList  : public System::IInterface

Properties

Type Visibility Source Unit Parent
interface
class
public
Xml.XMLIntf.pas
Xml.XMLIntf.hpp
Xml.XMLIntf Xml.XMLIntf

Description

IXMLNodeList represents a set of nodes in an XML document.

Use IXMLNodeList to work with a set of related nodes in an XML document. IXMLNodeList can be used to add or delete nodes from the set, or to access specific nodes.

Note: C++ method declarations that use IXMLNodeList use the _di_IXMLNodeList type instead. This type is a DelphiInterface wrapper around the IXMLNodeList interface:


typedef System::DelphiInterface< IXMLNodeList >  _di_IXMLNodeList;


See Also