Click or drag to resize

XMLGetParent Function

X#
Get parent of XML tag.

Namespace:  XSharp.XPP
Assembly:  XSharp.XPP (in XSharp.XPP.dll) Version: 2.19
Syntax
 FUNCTION XMLGetParent(
	nTagHandle AS INT64
) AS INT64
Request Example View Source

Parameters

nTagHandle
Type: Int64
Numeric handle for the XML tag.

Return Value

Type: Int64
Returns the numeric handle of the parent tag or 0 if nTagHandle doesn't have a parent tag.
Remarks
This function is used to retrieve the parent tag of an XML tag. Every tag has only one parent, except the document root tag which has no parent tag.
See Also