XmlNodeGetName: Difference between revisions
Jump to navigation
Jump to search
(New page: __NOTOC__ {{Server client function}} Gets the tag name of the specified XML node. ==Syntax== <syntaxhighlight lang="lua"> string xmlNodeGetName ( xmlnode node ) </syntaxhighlight> ===Required Arguments=== *'''node:...) |
m (Needs example) |
||
Line 13: | Line 13: | ||
===Returns=== | ===Returns=== | ||
Returns the tag name of the node if successful, ''false'' otherwise. | Returns the tag name of the node if successful, ''false'' otherwise. | ||
==Example== | |||
<syntaxhighlight lang="lua"> | |||
--TODO | |||
</syntaxhighlight> | |||
==See Also== | ==See Also== | ||
{{XML functions}} | {{XML functions}} | ||
[[Category:Needs Example]] |
Revision as of 08:16, 19 June 2009
Gets the tag name of the specified XML node.
Syntax
string xmlNodeGetName ( xmlnode node )
Required Arguments
- node: the node to get the tag name of.
Returns
Returns the tag name of the node if successful, false otherwise.
Example
--TODO