
Gets or sets a value indicating whether text in the Text Control is read-only, can be selected or is editable.
[C#]
public EditMode EditMode { get; set; }
[Visual Basic]
Public Property EditMode() As EditMode
| Value | Description | |
| Edit | The text of the Text Control can be edited. | |
| ReadAndSelect | The text of the Text Control is read only but can be selected. | |
| ReadOnly | The text of the Text Control is read only. |