Skip to main content
A newer version of this page is available. .

CheckAsYouTypeOptions Class

Represents an object that contains various settings for the SpellCheckMode.AsYouType operation mode of the spell checker.

Namespace: DevExpress.XtraSpellChecker

Assembly: DevExpress.XtraSpellChecker.v19.1.dll

Declaration

public class CheckAsYouTypeOptions

The following members return CheckAsYouTypeOptions objects:

Remarks

Use the SpellChecker.CheckAsYouTypeOptions property to access the CheckAsYouTypeOptions instance.

Example

private void Form1_Load(object sender, EventArgs e)
{
    // Set spell checking options.
    spellChecker1.SpellCheckMode = DevExpress.XtraSpellChecker.SpellCheckMode.AsYouType;
    spellChecker1.ParentContainer = this;
    spellChecker1.CheckAsYouTypeOptions.CheckControlsInParentContainer = true;
    // Set focus to the RichTextBox control to show red wavy lines under misspelled words.
    richTextBox1.Select();
}

Inheritance

Object
CheckAsYouTypeOptions
See Also