ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / XML file functions
  • Characteristics of current element
  • XML functions and threads
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
XMLElementType (Function)
In french: XMLTypeElément
Returns the type of current element (tag or attribute). To select an element, use the functions for XML search and browse (XMLFirst, XMLLast, XMLChild, ...).
Example
XMLFirst("XMLDoc")
SWITCH XMLElementType("XMLDoc")
CASE XMLTag: Info(XMLElementName("XMLDoc") + " is XMLTag")
CASE XMLAttribute: Info(XMLElementName("XMLDoc") + " is XMLAttribute")
END
Syntax
<Result> = XMLElementType(<XML document>)
<Result>: Integer constant
Type of current element.
XMLAttributeThe current element is an attribute.
XMLErrorNo element is currently read. The ErrorOccurred variable is set to True.
XMLTagThe current element is a tag.
<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

Characteristics of current element

  • The value of current element is returned by XMLData.
  • The name of current element is returned by XMLElementName.

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.
Component: wd290xml.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/16/2022

Send a report | Local help