Specifies whether document content can be copied to the clipboard. The default setting of this property is true.
public bool AllowCopy { get; set; }
The following example shows the Document
textControl1.EditMode = TXTextControl.EditMode.ReadAndSelect;
TXTextControl.DocumentPermissions document = new TXTextControl.DocumentPermissions();
document.AllowCopy = false;