corelibraries-devexpress-dot-xtraspellchecker-89c21e26.md
An interface used to represent a list of words ignored during spell check.
Namespace : DevExpress.XtraSpellChecker
Assembly : DevExpress.Data.v25.2.dll
NuGet Package : DevExpress.Data
public interface IIgnoreList :
IEnumerable<IIgnoreItem>,
IEnumerable
Public Interface IIgnoreList
Inherits IEnumerable(Of IIgnoreItem),
IEnumerable
The following members return IIgnoreList objects:
| Library | Related API Members |
|---|---|
| Cross-Platform Class Library | SpellCheckerBase.IgnoreList |
| WinForms Controls | SpellChecker.GetIgnoreList(Control) |
| WPF Controls | SpellChecker.GetIgnoreList(Control) |
The IgnoreList class serves as a base implementation of the IIgnoreList interface. Use the SpellCheckerBase.IgnoreList property to access an object exposing the IIgnoreList interface.
A word is added to the list when the user clicks the ‘Ignore’ or ‘Ignore All’ button located on the spelling form.
See Also