Gets or sets a value specifying whether the document can be printed. The default setting of this property is true.
public bool AllowPrinting { get; set; }Public Property AllowPrinting() As BooleanThe following example shows the Document
TXTextControl.DocumentPermissions document = new TXTextControl.DocumentPermissions();
document.AllowPrinting = false;Dim document As TXTextControl.DocumentPermissions = New TXTextControl.DocumentPermissions()
document.AllowPrinting = False