Try OpenEdge Now
skip to main content
Working with XML
Reading XML Documents with the Simple API for XML (SAX) : SAX API reference : SAX callback reference : EndElement
 
EndElement
Invoked when the XML parser detects the end of an element.

Syntax

PROCEDURE EndElement:
DEFINE INPUT PARAMETER namespaceURI AS CHARACTER.
DEFINE INPUT PARAMETER localName AS CHARACTER.
DEFINE INPUT PARAMETER qName AS CHARACTER.
namespaceURI
A CHARACTER string indicating the namespace URI of the element. If namespace processing is not enabled, or the element is not part of a namespace, the string is of length zero.
localName
A CHARACTER string indicating the nonprefixed element name. If namespace processing is not enabled, the string is of length zero.
qName
A CHARACTER string indicating the actual name of the element in the XML source. If the name has a prefix, qName includes it, whether or not namespace processing is enabled.
This callback corresponds to a preceding StartElement after all element content is reported.