Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.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