Gets the name of an XML element.
public string ElementName { get; }
Public ReadOnly Property ElementName() As String
The following snippet shows an easy way to use the TXText
TXTextControl.XmlElement myXMElement = new TXTextControl.XmlElement("XMLElementName");
System.Windows.Forms.MessageBox.Show("The XMLElement ElementName property is: " + newElement.ElementName);
Dim myXMElement As TXTextControl.XmlElement = New TXTextControl.XmlElement("XMLElementName")
System.Windows.Forms.MessageBox.Show("The XMLElement ElementName property is: " & newElement.ElementName)