XmlNodeSetName: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(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==...)
(No difference)

Revision as of 10:10, 25 May 2008

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