AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Funciones WLanguage / Funciones estándar / Funciones de archivos XML
  • Functions modifying XMLOut
  • XML functions and threads
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
Used to find out whether the element (tag or attribute) on which we want to be positioned is outside the XML document.
The use of XMLOut is optional. Indeed, the XML browse functions return a result allowing you to find out whether they have been successful or not. Using the XMLOut is recommended for greater clarity in your code.
Ejemplo
// Read the first element
XMLFirst("XMLDoc")

// Tag found?
IF XMLOut("XMLDoc") = False THEN
	Info("Current tag: " + XMLElementName("DocXML"))
END
Sintaxis
<Result> = XMLOut(<XML document>)
<Result>: Boolean
  • True if a browse function failed to position on an element,
  • False otherwise (the current position in the XML document is not modified).
    XMLOut and XMLFound 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.
Observaciones

Functions modifying XMLOut

The following functions modify the value returned by XMLOut:

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.
Componente: wd300xml.dll
Versión mínima requerida
  • Versión 9
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 28/03/2025

Señalar un error o enviar una sugerencia | Ayuda local