Returns the current position in the document in XPATH format.
Res is string
Res = XMLPath("MyDocument")
// Res has the following format: /ORDERS/ORDERLINE[2]/@NUMBER on an attribute
// Res has the following format: /ORDERS/ORDERLINE[1] on a child tag
// Res has the following format: /ORDERS on a tag
// Caution, the XMLPosition function can also return a string
// in the following format (syntactically valid): /*/*[8]/*[1]
Syntax
<Result> = XMLPath(<XML document>)
<Result>: Character string
Position of current element, in XPATH format.
<XML document>: Character string
Name of the XML document used. This document contains the XML code to study and it was created by XMLDocument.
Remarks
XML functions and threads
If your application uses threads, the XML document is shared between all these threads. For more details on threads, see
Managing threads.
Business / UI classification: Business Logic