Porovnávané verzie

Kľúč

  • Tento riadok sa pridal
  • Riadok je odstránený.
  • Formátovanie sa zmenilo.

%XML_AddCDataNode function


Function
The function adds a new CDATA XML element.
Declaration


Blok kódu
languageesl
themeConfluence
INT %XML_AddCDataNode(
    INT in node, 
    TEXT in CDATA
 )
Parameters


nodeHandle to parent XML node.
CDATACDATA of new element.
Return value
Handle to the added XML element.
Description
The function adds defined CDATA  to the given parent XML node. Parent node can be an element.
Example


Blok kódu
languageesl
themeRDark
 INT _doc
 _doc := %XML_CreateDocument()
 INT _el
 _el := %XML_AddElement(_doc, "element")
 INT _txt
 _txt := %XML_AddCDataNode(_el, "fjdkfjgwljl")