Dokumentaro de Gambaso
Compilation & Installation
Components
gb
gb.crypt
gb.qt4
Documents
Indekso de Lingvo
Language Overviews
LeguMin
Lexicon
Registro

XmlElement.AppendText (gb.xml)

Sub AppendText ( Data As String )

Creates a new text node, with the given NewText value, and adds it to the end of the list of children of this element.

This method is a faster way to do :

Dim element As New XmlElement("foo")
Dim text As New XmlTextNode(NewText)

element.AppendChild(text)