XmlUnloadFile

From Multi Theft Auto: Wiki
Revision as of 20:16, 2 January 2015 by Strix (talk | contribs) (fix oop syntax)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Unloads an XML document from memory.

Syntax

bool xmlUnloadFile ( xmlnode node )               

OOP Syntax Help! I don't understand this!

Method: xmlnode:unload(...)


Required Arguments

  • node: root of the XML document to unload

Returns

Returns true if the document was unloaded successfully, false otherwise.

Example

Modify a configuration file.

config.xml:

<config>
    <markers color="255,100,0" />
</config>

Lua code:

xml = xmlLoadFile("config.xml")
markernode = xmlFindChild(xml, "markers", 0)
xmlNodeSetAttribute(markernode, "color", "0,0,200")
xmlSaveFile(xml)
xmlUnloadFile(xml)

See Also