CreateXML()
Syntax
Result = CreateXML(#XML [, Encoding])Description
Creates a new empty XML tree identified by the #XML number. If #PB_Any is used as '#XML' parameter, the new XML tree number will be returned as 'Result'. 'Encoding' specifies the encoding to use for the tree. Valid values are #PB_Ascii, #PB_Unicode or #PB_UTF8. (#PB_UTF8 is the default)
The new tree will only have a root node which can be accessed with RootXMLNode(). To add new nodes, CreateXMLNode() can be used.
Supported OS
All