ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Standard functions / XML file functions
  • Functions that modify XMLFound
  • XML functions and threads
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
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("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.
Component: wd300xml.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 10/04/2024

Send a report | Local help