Specifies the text of the XML element. If the element consists of several sub-elements, the text parts are separated through paragraph end characters (0x0A).
public string Text { get; set; }
The following snippet shows the usage of the TXText
TXTextControl.XmlElement newElement = new TXTextControl.XmlElement("Telephone", "046798 / 3459786");
System.Windows.Forms.MessageBox.Show(newElement.Text); // MessageBox shows phone number (046798 / 3459786)