XmlCreateFile

From Multi Theft Auto: Wiki
Revision as of 00:29, 13 September 2007 by Jbeta (talk | contribs)
Jump to navigation Jump to search

This function creates a new XML document, which can later be saved to a file by using xmlSaveFile.

Syntax

Click to collapse [-]
Server and Client
xmlnode xmlCreateFile ( string filename, string rootNodeName )

Required Arguments

  • filename: The name of the XML file you wish to create.
  • rootNodeName: The name of the root node in the XML document.

Returns

Returns the root xmlnode object of the new XML file if successful, or false otherwise.

See Also