|
|
|
|
|
- Characteristics of current element
- XML functions and threads
XMLElementType (Function) Returns the type of current element (tag or attribute). To select an element, use the functions for XML search and browse ( XMLFirst, XMLLast, XMLChild, ...).
XMLFirst("XMLDoc")
SWITCH XMLElementType("XMLDoc")
CASE XMLTag: Info(XMLElementName("DocXML") + " is of type XMLBalise")
CASE XMLAttribute: Info(XMLElementName("DocXML") + " is of type XMLAttribut")
END
Sintaxis
<Result> = XMLElementType(<XML document>)
<Result>: Integer constant Type of current element. | | XMLAttribute | The current element is an attribute. | XMLError | No element is currently read. The ErrorOccurred variable is set to True. | XMLTag | The 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. Observaciones 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.
Esta página también está disponible para…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|