ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / XML file functions
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
XMLCancelSearch (Function)
In french: XMLAnnuleRecherche
Cancels the search performed by XMLFind.
Example
// Find the <price> tag
XMLFind("XMLDoc", "price", XMLTag)
WHILE XMLFound("XMLDoc") = True
Info("Tag found " + XMLElementName("DocXML"))
XMLNext("XMLDoc")
END
 
// Cancels the current search
XMLCancelSearch("XMLDoc")
 
// Resume a standard browse
XMLFirst("XMLDoc")
WHILE XMLOut("XMLDoc") = False
// Operations
XMLNext("XMLDoc")
END
Syntax
XMLCancelSearch(<XML document>)
<XML document>: Character string
Name of XML document in which the search will be canceled. This document contains the XML code and it was created by XMLDocument.
Component: wd290xml.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help