Gets or sets a value specifying whether formatting styles can be used to format the document. The default setting of this property is true.
public bool AllowFormattingStyles { get; set; }
The following example shows the TXText
textControl1.EditMode = TXTextControl.EditMode.ReadAndSelect;
TXTextControl.DocumentPermissions document = new TXTextControl.DocumentPermissions();
document.AllowFormatting = true;
document.AllowFormattingStyles = true;