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

NotInDictionaryWordFoundEventArgs(String, SuggestionCollection, SpellCheckOperation, String, Position, Position, Boolean) Constructor

Initializes a new NotInDictionaryWordFoundEventArgs class instance.

Namespace: DevExpress.XtraSpellChecker

Assembly: DevExpress.SpellChecker.v18.2.Core.dll

Declaration

public NotInDictionaryWordFoundEventArgs(
    string word,
    SuggestionCollection suggestions,
    SpellCheckOperation result,
    string suggestion,
    Position startPosition,
    Position length,
    bool handled
)

Parameters

Name Type Description
word String

A String object representing a word not found in a dictionary.

suggestions SuggestionCollection

A SuggestionCollection object, representing the result of a suggestion search.

result SpellCheckOperation

A SpellCheckOperation enumeration member, which defines the action which the spellchecker should perform.

suggestion String

A string, representing the most relevant suggested word.

startPosition DevExpress.XtraSpellChecker.Parser.Position

A DevExpress.XtraSpellChecker.Parser.Position object, representing the position in the text where the word begins.

length DevExpress.XtraSpellChecker.Parser.Position

A DevExpress.XtraSpellChecker.Parser.Position object, representing the length of a word.

handled Boolean

When this parameter is set to true, the default event handling code is not executed.

See Also