Class IspellDictionaryBase
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
IspellDictionaryBase
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 IspellDictionaryBase : GrammarDictionaryBase
Examples
var french = new IspellDictionary(); french.Culture = new CultureInfo("fr"); french.DictionaryUri = new Uri("/SpellCheckerDemo;component//french.dic"); french.GrammarUri = new Uri("/SpellCheckerDemo;component//french.xlg");
var dictionaries = new DictionaryCollection(); dictionaries.Add(french);
spellChecker.Dictionaries = dictionaries; spellChecker.Culture = new CultureInfo("fr");
Constructors
IspellDictionaryBase()
Declaration
protected IspellDictionaryBase()