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
  • Handling elements in the XML code
  • 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
Positions on the previous element (tag or attribute).
If no search is in progress: moves to the element preceding the current one in the tree structure.
If a search is in progress: moves to the previous item searched for.
Java The browses are performed in alphabetical order of the attributes.
Example
// Positions on the last element
XMLLast("XMLDoc")
WHILE XMLOut("XMLDoc") = False
	// Process the data
	XMLPrevious("XMLDoc")
END
Syntax
<Result> = XMLPrevious(<XML document>)
<Result>: Boolean
  • True if an element was found,
  • False otherwise. If an error occurs:
    • the current position remains unchanged.
    • the ErrorOccurred variable is set to True. To get more details on the error, use ErrorInfo.
<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

Handling elements in the XML code

After XMLPrevious, the current element can be handled by XMLElementName, XMLParentName, XMLElementType and XMLData.

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: 09/30/2024

Send a report | Local help