Class HunspellDictionaryBase
A class that requires base dictionary and affix file. It has algorithm that process file provided and loads words required for dictionary.
Inheritance
System.Object
HunspellDictionaryBase
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.SpellChecker.Base
Assembly: Syncfusion.SpellChecker.Base.dll
Syntax
public abstract class HunspellDictionaryBase : GrammarDictionaryBase
Examples
var english = new HunspellDictionary(); english.Culture = new CultureInfo("en-us"); english.DictionaryUri = new Uri("/SpellCheckerDemo;component//english.dic"); english.GrammarUri = new Uri("/SpellCheckerDemo;component//english.aff");
var dictionaries = new DictionaryCollection(); dictionaries.Add(english);
spellChecker.Dictionaries = dictionaries; spellChecker.Culture = new CultureInfo("en-us");
Constructors
HunspellDictionaryBase()
Declaration
protected HunspellDictionaryBase()