| Name |
Description |
| AddDoctype |
Adds a 'Doctype'-definition to an XML-Document. |
| AddEle |
Adds an existing element to a node (document or element). |
| AddNamespace |
Adds a 'Namespace'-definition the root of a XML-Element or XML-Document. When the Document does not contain a root an Exception is thrown. |
| ClearRef |
Removes a previously defined reference |
| CopyAttrs |
Copies attributes from one element to another. |
| CopyDoc |
Copies an (XML-)document into another (XML-)document. |
| CopyEle |
Copies an (XML-)element into another (XML-)element. |
| CreateDoc |
Creates or copies a new (XML-)document. |
| CreateEle |
Creates a new element within a node (document or element). |
| Delete |
Deletes the document, element.... |
| DeleteAttrs |
Deletes attributes of an element. |
| PrintToFile |
Let's you write text in the file you have created with the CreateFile Command |
| ReadCSV |
Reads the content of a CSV (comma separated value) file into an XML structure (document). The name of the root-element will be 'csvroot' containing n elements named 'csvrow' for each row. |
| Rename |
Renames a reference (Property, Element, Elementattribute). |
| Name |
Description |
| Exit |
Stops the Execution of scripts. |
| For |
For each elements returned by the XPath-query, the commands embraced by the 'for'-command are executed. |
| ForString |
Performs a loop over a given String and returns token after token. |
| If |
IF the given condition evaluates to 'true', the commands embraced by the 'if'-command are executed. |
| LoadPropFromEle |
Defines properties from a textcontent of an XML element.Each property has to be defined as 'name=value'.Several property definitions have to be separated by a [newline]. |
| SelectFirst |
Selects the first element returned by a XPath-query. |
| While |
While the given condition evaluates to 'true', the commands embraced by the 'while'-command are executed. |