Developer's Guide
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
virtual P6R::P6ERR P6R::p6IXMLNode2::removeChildAt ( P6UINT32  index)
pure virtual

The current node has getNumChildren() number of children.

Starting at offset zero the index parameter identifies the child XML node to remove. Note, that this method does not free that XML node but just removes it from the DOM tree off of its parent.

Parameters
index[ in ] A parent's children have indexes from {0 .. getNumChildren()}.
Returns
SuccessP6R::eOk 
FailureP6R::eNotInitializedA successful call to intialize() must be made before calling this funciton.
P6R::eTooBigindex is larger than number of children of current node.