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
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
XMLExtractDocument (Function)
In french: XMLExtraitDocument
Creates a new XML document from an existing XML document.
AndroidAndroid Widget In the final XML document, the list of attributes is sorted in alphabetical order.
Example
SourceXML is string
Res is boolean
// Chargement du contenu XML
SourceXML = fLoadText("C:\Temp\exemple.xml")

// Création du document XML
Res = XMLDocument("DocXML", SourceXML)

// Le document est créé ?
IF Res = False THEN
	Error("Le problème suivant a été détecté : " + ErrorInfo())
ELSE
	Res = XMLExtractDocument("DocXML", "MonNouveauDoc")
	IF Res = False THEN
		Error("Le problème suivant a été détecté : " + ErrorInfo())
	ELSE
		Info("Nouveau document créé")
	END
END
Syntax
<Result> = XMLExtractDocument(<Source XML document> , <New XML document>)
<Result>: Boolean
  • True if the new XML document was created,
  • False otherwise (the ErrorOccurred variable is set to True). To get more details on the error, use ErrorInfo.
<Source XML document>: Character string
Name of the XML document from which the new XML document will be created. The new XML document will be created from the current position in the document (at current branch level).
<New XML document>: Character string
Name of the XML document to create.
Business / UI classification: Business Logic
Component: wd300xml.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/27/2025

Send a report | Local help