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

Syntax

public bool AutoSelect { get; set; }

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;