XMLData.AppendChild
See also
Declaration: AppendChild(pNewData as XMLData)
Description
AppendChild appends pNewData as last child to the XMLData object. See also "Using XMLData".
Example
Dim objCurrentParent
Dim objNewChild
Set objNewChild = objPlugIn.CreateChild(spyXMLDataElement)
Set objCurrentParent = objPlugIn.XMLRoot
objCurrentParent.AppendChild objNewChild
Set objNewChild = Nothing