Data.Cloud.CloudAPI.GetFirstMatchingChildNode

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: function
Visibility: public
Source:
Data.Cloud.CloudAPI.pas
Data.Cloud.CloudAPI.hpp
Unit: Data.Cloud.CloudAPI
Parent: Data.Cloud.CloudAPI

Delphi

function GetFirstMatchingChildNode(Parent: IXMLNode; ChildName: string): IXMLNode;

C++

extern DELPHI_PACKAGE Xml::Xmlintf::_di_IXMLNode __fastcall GetFirstMatchingChildNode(Xml::Xmlintf::_di_IXMLNode Parent, System::UnicodeString ChildName);

Description

Helper function that returns the first child node of the given name.

GetFirstMatchingChildNode returns the first matching child node, or nil if none is found.

The following table shows the significance of the parameters for both the overloaded methods:

Parameter Description

Parent

The parent node to get the child nodes from

ChildName

The name of the child node to find


See Also