Xml.XMLDoc.TXMLNode.CreateChildList

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function CreateChildList: IXMLNodeList; dynamic;

C++

DYNAMIC Xml::Xmlintf::_di_IXMLNodeList __fastcall CreateChildList();

Properties

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

Description

Creates the object that implements the ChildNodes property.

Applications can't call the protected CreateChildList method. This method is used internally the first time an application reads the ChildNodes property.

CreateChildList creates an implementation class for the ChildNodes property, telling it to call the ChildListNotify method when it changes the list of attributes for this node, and filling it with nodes that are based on the current children of this node.

See Also