Xml.XMLDoc.TXMLNodeList.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(Owner: TXMLNode; const DefaultNamespaceURI: DOMString;
NotificationProc: TNodeListNotification);

C++

__fastcall TXMLNodeList(TXMLNode* Owner, const System::UnicodeString DefaultNamespaceURI, TNodeListNotification NotificationProc);

Properties

Type Visibility Source Unit Parent
constructor public
Xml.XMLDoc.pas
Xml.XMLDoc.hpp
Xml.XMLDoc TXMLNodeList

Description

Instantiates a TXMLNodeList object.

Createinstantiates a new TXMLNodeList object. Typically, TXMLNodeList is created by another object that represents a node. The TXMLNodeList represents a set of nodes that are of interest to the other object that creates it.

AOwner is the node that creates TXMLNodeList to represent a set of its child nodes or attributes.

DefaultNamespaceURI identifies the namespace that is used by default for nodes added to this list when no namespace is explicitly specified.

NotificationProc is a callback that TXMLNodeList calls when nodes are added to or removed from the list, or when new nodes need to be created.

See Also