Xml.XMLIntf.IXMLNodeCollection

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

IXMLNodeCollection = interface(IXMLNode)

C++

__interface  INTERFACE_UUID("{395950C2-7E5D-11D4-83DA-00C04F60B2DD}") IXMLNodeCollection  : public IXMLNode

Properties

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

Description

IXMLNodeCollection is the interface for a set of child nodes that are all the same type.

Use IXMLNodeCollection to work with repeating elements in an XML document. The XML Data Binding wizard generates descendants of the IXMLNodeCollection interface to represent sets of child nodes that are all of a particular type.

IXMLNodeCollection is a descendant of IXMLNode. As such, it provides generic support for working with a node in an XML document. In addition, IXMLNodeCollection introduces properties and methods that manage a set of child nodes that are all the same type of node (that all have the same tag names or that are defined as the same type in an XML schema).

See Also