Determines whether the text of a newly added XML element is automatically selected.
public bool AutoSelect { get; set; }
Public Property AutoSelect() As Boolean
This eaxample shows how to set the Auto
TXTextControl.XmlElement MyXMLElement = new TXTextControl.XmlElement("XMLElementName");
MyXMLElement.AutoSelect = true;
Dim MyXMLElement As TXTextControl.XmlElement = New TXTextControl.XmlElement("XMLElementName")
MyXMLElement.AutoSelect = True