Xml.XMLDoc.TXMLNode.ChildNodeClasses

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ChildNodeClasses: TNodeClassArray read GetChildNodeClasses;

C++

__property TNodeClassArray ChildNodeClasses = {read=GetChildNodeClasses};

Properties

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

Description

Lists the classes that the XML Data Binding wizard defines to represent child nodes of this node.

ChildNodeClasses is used internally when creating child nodes for this node. The XML Data Binding wizard defines TXMLNode descendants for each node in the XML document that represents a node that has (or can have) children. ChildNodeClasses lists only those TXMLNode descendants that can represent child nodes of this node. These classes become the types of the corresponding properties on the TXMLNode descendant that represents this node.

Classes are added to ChildNodeClasses by the RegisterChildNode method.

See Also