Skip to main content

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.v23.2.dll

NuGet Package: DevExpress.Win.SpellChecker

Declaration

public class CheckAsYouTypeOptions

The following members return CheckAsYouTypeOptions objects:

Remarks

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

Example

View 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