XMLGetChildren Function | |
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
public static Array XMLGetChildren(
long nTagHandle,
string cChildTagName
)
Request Example
View SourceParameters
- nTagHandle
- Type: Int64
Numeric handle for the XML tag. - cChildTagName
- Type: String
The tag name of the child tags to search.
Return Value
Type:
ArrayReturns 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