XmlCreateChild: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 18: Line 18:
==See Also==
==See Also==
{{XML functions}}
{{XML functions}}
[[Category:Needs Example]]

Revision as of 23:05, 13 June 2009

This function creates a new child node under an XML node.

Syntax

xmlnode xmlCreateChild ( xmlnode parentNode, string tagName )

Required Arguments

  • parentNode: the xmlnode you want to create a new child node under.
  • tagName: the type of the child node that will be created.

Returns

Returns the created xmlnode if successful, false otherwise.

Example

See Also