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

IIgnoreList.Contains(Position, Position, String) Method

Determines whether a word is in the list of ignored words, ignored in the specified location.

Namespace: DevExpress.XtraSpellChecker

Assembly: DevExpress.Data.v18.2.dll

Declaration

bool Contains(
    Position start,
    Position end,
    string word
)

Parameters

Name Type Description
start DevExpress.XtraSpellChecker.Parser.Position

A DevExpress.XtraSpellChecker.Parser.Position object representing a position in the text being checked.

end DevExpress.XtraSpellChecker.Parser.Position

A DevExpress.XtraSpellChecker.Parser.Position object representing a position in the text being checked.

word String

A string to locate in the list of ignored words.

Returns

Type Description
Boolean

true if the word is found within the list and marked as effective in the specified location; otherwise false.

Remarks

This method is used for words which are ignored only once.

See Also