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

IIgnoreList Interface

An interface used to represent a list of words ignored during spell check.

Namespace: DevExpress.XtraSpellChecker

Assembly: DevExpress.Data.v19.1.dll

Declaration

public interface IIgnoreList :
    IEnumerable<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)

Remarks

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