Gets or sets a value specifying whether the document is read only. Neither the document's text can be changed nor the document can be formatted. The default setting of this property is true.
public bool ReadOnly { get; set; }
The following snippet describes how to use the TXText
textControl1.EditMode = TXTextControl.EditMode.ReadAndSelect;
TXTextControl.DocumentPermissions documentPermissions = new TXTextControl.DocumentPermissions();
documentPermissions.AllowCopy = false;
documentPermissions.AllowFormatting = false;
documentPermissions.AllowFormattingStyles = false;
documentPermissions.AllowPrinting = false;
documentPermissions.ReadOnly = true; // Here, the ReadOnly property is set