ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / XML file functions
  • Functions that modify XMLFound
  • XML functions and threads
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
XMLFound (Function)
In french: XMLTrouve
Checks whether the current element corresponds to the current browse or to the current search.
Example
// Find the tag that starts with "pri"
XMLFind("XMLDoc", "pri", XMLTag + XMLChildItem, XMLStartWith)
WHILE XMLFound("XMLDoc") = True
Info("Tag found " + XMLElementName("DocXML"))
// Next element in the search
XMLNext("XMLDoc")
END
// Browse a document
XMLFirst("XMLDoc")
// Tag found?
IF XMLFound("XMLDoc") = True THEN
Info("Current tag: " + XMLElementName("XMLDoc"))
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.
Component: wd290xml.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/16/2022

Send a report | Local help