XmlSaveFile: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
__NOTOC__ | |||
This function saves a loaded XML file. | |||
==Syntax== | ==Syntax== | ||
<syntaxhighlight lang="lua">bool xmlSaveFile ( | <syntaxhighlight lang="lua">bool xmlSaveFile ( xmlnode rootNode ) </syntaxhighlight> | ||
===Required Arguments=== | |||
*'''rootNode:''' the root [[xmlnode]] of the loaded XML file. | |||
===Returns=== | |||
Returns ''true'' if blah, ''false'' otherwise. | |||
==Example== | |||
<syntaxhighlight lang="lua"> | |||
--This line does... | |||
blabhalbalhb --abababa | |||
--This line does this... | |||
mooo | |||
</syntaxhighlight> | |||
==See Also== | |||
{{XML_functions}} | |||
[[Category:Incomplete]] |
Revision as of 00:15, 13 April 2007
This function saves a loaded XML file.
Syntax
bool xmlSaveFile ( xmlnode rootNode )
Required Arguments
- rootNode: the root xmlnode of the loaded XML file.
Returns
Returns true if blah, false otherwise.
Example
--This line does... blabhalbalhb --abababa --This line does this... mooo