Porovnávané verzie

Kľúč

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

...

XML file manipulation functions allows allow to load and save an XML document, create, read, write and delete XML elements and attributes. Function names are created by the prefix %XML_.

Example:

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

...