XmlNodeGetParent: Difference between revisions
Jump to navigation
Jump to search
(New page: {{Server client function}} __NOTOC__ Returns the parent node of an xml node. ==Syntax== <syntaxhighlight lang="lua"> xmlnode xmlNodeGetParent ( xmlnode node ) </syntaxhighlight> ===Required Arguments=== *'''node:'...) |
mNo edit summary |
||
Line 1: | Line 1: | ||
{{Server client function}} | {{Server client function}} | ||
__NOTOC__ | __NOTOC__ | ||
Returns the parent node of an xml node. | Returns the parent node of an xml node. | ||
Revision as of 11:55, 6 April 2008
Returns the parent node of an xml node.
Syntax
xmlnode xmlNodeGetParent ( xmlnode node )
Required Arguments
- node: the node of which you want to know the parent.
Returns
Returns the parent node of the specified node if successful. Returns false if the specified node is the root node or an invalid node was passed.
Example
See Also
- xmlCopyFile
- xmlCreateChild
- xmlCreateFile
- xmlDestroyNode
- xmlFindChild
- xmlLoadFile
- xmlLoadString
- xmlNodeGetAttribute
- xmlNodeGetAttributes
- xmlNodeGetChildren
- xmlNodeGetName
- xmlNodeGetParent
- xmlNodeGetValue
- xmlNodeSetAttribute
- xmlNodeSetName
- xmlNodeSetValue
- xmlSaveFile
- xmlUnloadFile