XmlDestroyNode: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
{{Server client function}} | {{Server client function}} | ||
This function destroys | This function destroys a XML node from the XML node tree. | ||
==Syntax== | ==Syntax== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
bool xmlDestroyNode ( xmlnode ) | bool xmlDestroyNode ( xmlnode theXMLNode ) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
===Required Arguments=== | ===Required Arguments=== | ||
*'''theXMLNode:''' The [[xml node]] you want to destroy. | |||
*''' | |||
===Returns=== | ===Returns=== | ||
Returns | Returns ''true'' if the [[xml node]] was successfully destroyed, ''false'' otherwise. | ||
==Example== | ==Example== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
-- Todo... | |||
</syntaxhighlight> | </syntaxhighlight> | ||
==See Also== | ==See Also== | ||
{{ | {{XML functions}} | ||
[[Category:Needs Example]] | [[Category:Needs Example]] |