Back to Devexpress

IIgnoreList Interface

corelibraries-devexpress-dot-xtraspellchecker-89c21e26.md

latest1.9 KB
Original Source

IIgnoreList Interface

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

Declaration

csharp
public interface IIgnoreList :
    IEnumerable<IIgnoreItem>,
    IEnumerable
vb
Public Interface IIgnoreList
    Inherits IEnumerable(Of IIgnoreItem),
             IEnumerable

The following members return IIgnoreList objects:

LibraryRelated API Members
Cross-Platform Class LibrarySpellCheckerBase.IgnoreList
WinForms ControlsSpellChecker.GetIgnoreList(Control)
WPF ControlsSpellChecker.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

IIgnoreList Members

DevExpress.XtraSpellChecker Namespace