Click or drag to resize

XMLGetTag Function

X#
Get members of an XML tag node.

Namespace:  XSharp.XPP
Assembly:  XSharp.XPP (in XSharp.XPP.dll) Version: 2.19
Syntax
 FUNCTION XMLGetTag(
	nTagHandle AS INT64,
	aTagMember OUT USUAL
) AS LOGIC
Request Example View Source

Parameters

nTagHandle
Type: Int64
Numeric handle of an XML tag.
aTagMember
Type: Usual
If the function returns successfully, this parameter contains an array with all members of the tag. The parameter must be passed by reference. Single elements of the array can be accessed using constants listed below.

Return Value

Type: Logic
Returns .T. (true) if the tag is a valid tag and .F. (false) otherwise.
Remarks
This function is used to retrieve all members of an XML tag node. The elements are the same as in Xbase++, and an extra 6th element has been added that contains the XmlNode object.
See Also