Specifies whether a text field's text is checked on misspelled words. The default setting of this property is true.
Introduced: 16.0.
public bool IsSpellCheckingEnabled { get; set; }
The following example uses the Is
TXTextControl.TextField field = new TXTextControl.TextField("Product");
field.Name = "product";
field.IsSpellCheckingEnabled = false;
textControl1.TextFields.Add(field);
foreach (TXTextControl.TextField curfield in textControl1.TextFields)
{
if (curfield.Name == "product")
curfield.Text = "TX Text Control";
}