​
​
​

Determines whether the text of a newly added XML element is automatically selected.

Syntax

​public bool AutoSelect { get; set; }
​Public Property AutoSelect() As Boolean

Examples

This eaxample shows how to set the AutoSelect property to true, so that the text of a newly added XML element is automatically selected.

​TXTextControl.XmlElement MyXMLElement = new TXTextControl.XmlElement("XMLElementName");
MyXMLElement.AutoSelect = true;
​Dim MyXMLElement As TXTextControl.XmlElement = New TXTextControl.XmlElement("XMLElementName")
MyXMLElement.AutoSelect = True
​