XmlNodeSetName

From Multi Theft Auto: Wiki
Revision as of 10:10, 25 May 2008 by Arc (talk | contribs) (New page: __NOTOC__ {{Server client function}} Sets the tag name of the specified XML node. ==Syntax== <syntaxhighlight lang="lua"> bool xmlNodeSetName ( xmlnode node, string name ) </syntaxhighlight> ===Required Arguments==...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Sets the tag name of the specified XML node.

Syntax

bool xmlNodeSetName ( xmlnode node, string name )

Required Arguments

  • node: the node to change the tag name of.
  • name: the new tag name to set.

Returns

Returns true if successful, false otherwise.

See Also