XMLData.AppendChild
Siehe auch
Deklaration: AppendChild(pNewData als XMLData)
Beschreibung
AppendChild hängt pNewData als letztes Child an das XMLData-Objekt an. Siehe auch "Using XMLData".
Beispiel
Dim objCurrentParent
Dim objNewChild
Set objNewChild = objPlugIn.CreateChild(spyXMLDataElement)
Set objCurrentParent = objPlugIn.XMLRoot
objCurrentParent.AppendChild objNewChild
Set objNewChild = Nothing