Xml.XMLDoc.TXMLNode.GetChildNodeClasses

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetChildNodeClasses: TNodeClassArray;

C++

TNodeClassArray __fastcall GetChildNodeClasses();

Properties

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

Description

Returns a list of the classes that can implement child nodes of this node.

GetChildNodeClasses is used internally to obtain a list of the classes that can be used to represent child nodes of this node.

If this node is not a hosted node, GetChildNodeClasses returns an array containing every class that has been registered using the RegisterChildNode method. If this node is a hosted node, GetChildNodeClasses returns the ChildNodeClasses property of the host node.

See Also