|
|
|
|
|
XMLExtractDocument (Function) In french: XMLExtraitDocument Creates a new XML document from an existing XML document.
SourceXML is string
Res is boolean
SourceXML = fLoadText("C:\Temp\exemple.xml")
Res = XMLDocument("DocXML", SourceXML)
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
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|