XmlCreateFile

From Multi Theft Auto: Wiki
Revision as of 23:27, 12 September 2007 by Jbeta (talk | contribs) (New page: __NOTOC__ {{Server client function}} This function creates a new XML file inside the root directory of the resource it's called from. ==Syntax== <section name="Server and Client" class="...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This function creates a new XML file inside the root directory of the resource it's called from.

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