|
|
|
|
|
- Functions that modify XMLFound
- XML functions and threads
XMLFound (Function) In french: XMLTrouve Checks whether the current element corresponds to the current browse or to the current search.
XMLFind("XMLDoc", "pri", XMLTag + XMLChildItem, XMLStartWith)
WHILE XMLFound("XMLDoc") = True
Info("Tag found " + XMLElementName("DocXML"))
XMLNext("XMLDoc")
END
XMLFirst("XMLDoc")
IF XMLFound("XMLDoc") = True THEN
Info("Current tag: " + XMLElementName("DocXML"))
END
Syntax
<Result> = XMLFound(<XMLÂ document>)
<Result>: Boolean - True if an XML browse function was positioned on an element,
- False otherwise (the current position in the XML document is not modified). XMLFound and XMLOut always return the opposite result.
<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 Functions that modify XMLFound The following functions modify the value returned by XMLFound: 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. If the current position in an XML document is modified in a thread, the current position in this XML document is modified for all the threads.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|