SetXMLStandalone()
Syntax
SetXMLStandalone(#XML, Standalone)Description
Changes the "standalone" attribute of the XML declaration when exporting/saving the document.
'Standalone' can be one of these values:#PB_XML_StandaloneYes : The document mode is standalone #PB_XML_StandaloneNo : The document mode is not standalone #PB_XML_StandaloneUnset: The standalone mode is not specified in the declarationNote: Since this library does not validate document type definitions (DTDs), the value of this attribute has no effect on the parsing/saving of documents with this library except that it is read from and written to the XML declaration. This value is however important when working with XML documents intended for validating parsers, thats why this command exists.
Supported OS
All