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 As XMLData
Dim objNewChild As XMLData
Set objNewChild = objSpy.ActiveDocument.CreateChild(spyXMLDataElement)
Set objCurrentParent = objSpy.ActiveDocument.RootElement
objCurrentParent.AppendChild objNewChild
Set objNewChild = Nothing
Previous
Top
Next