Click or drag to resize

XMLGetChildren Function

X#
Get array of children of an XML tag.

Namespace:  XSharp.XPP
Assembly:  XSharp.XPP (in XSharp.XPP.dll) Version: 2.19
Syntax
 FUNCTION XMLGetChildren(
	nTagHandle AS INT64,
	cChildTagName AS STRING
) AS ARRAY
Request Example View Source

Parameters

nTagHandle
Type: Int64
Numeric handle for the XML tag.
cChildTagName
Type: String
The tag name of the child tags to search.

Return Value

Type: Array
Returns an array of child handles matching the name specified as second parameter, or 0 if no child with the given name exists.
Remarks
This function is used to retrieve all child tags having the tag name specified with the second parameter.
See Also