Where to look for spelling suggestions for erroneous words.
Declaration Syntax
C# | Visual Basic |
public enum SpellingSuggestionSource
Public Enumeration SpellingSuggestionSource
Members
Member | Description |
---|---|
FromEventOnly |
Fastest source (from internal perspective) - suggestions are only taken from the FoundSpellingErrorEventArgs.
|
PresetDictionary |
Second fastest - suggestions are obtained from the internal dictionary (as specified by Language property).
|
SearchLexicon |
Third fastest - suggestions are obtained from the current list of words which have been indexed. Speed varies greatly depending on size of lexicon (eg. roughly 1 second for 100,000 words).
|
PresetDictionaryAndOptionalSearchLexicon |
Optimal (default) - uses the dictionary always, and the SearchLexicon only when no search results have been found.
|
PresetDictionaryAndSearchLexicon |
Slowest - uses the preset-dictionary and the search-lexicon always.
|
Remarks
Care should be taken when using any option with "SearchLexicon" as this can become slow when the lexicon becomes very large (>100,000 entries).
Assembly: Keyoti4.SearchEngine.Web (Module: Keyoti4.SearchEngine.Web.dll) Version: 2022.8.22.610