XmlNodeGetName

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Gets the tag name of the specified XML node.

Syntax

string xmlNodeGetName ( xmlnode node )

OOP Syntax Help! I don't understand this!

Method: xmlnode:getName(...)
Variable: .name
Counterpart: xmlNodeSetName


Required Arguments

  • node: the node to get the tag name of.

Returns

Returns the tag name of the node if successful, false otherwise.

Example

Click to collapse [-]
Example 1
local xml = xmlCreateFile("test.xml","test")
local xmlNode = xmlCreateChild(xml,"nextTest")
local xmlNodeName = xmlNodeGetName(xmlNode)
xmlUnloadFile(xml)
outputConsole(xmlNodeName) --This should output "nextTest".

See Also