The XmlReader class / om.XmlReader methods |
Returns the character data of the current processed element.
getCharacters() RETURNING result STRING
Use the getCharacters() method to get the character data of the current processed element, in the Characters event context.
DEFINE r om.XmlReader, e STRING ... LET e = r.read() WHILE e IS NOT NULL CASE e ... WHEN "Characters" DISPLAY "Characters:'",r.getCharacters(),"'" ...