menu

WinForms

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class HunspellDictionaryBase - WindowsForms API Reference | Syncfusion

    Show / Hide Table of Contents

    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
    DictionaryBase
    GrammarDictionaryBase
    HunspellDictionaryBase
    HunspellDictionary
    Inherited Members
    DictionaryBase.Culture
    DictionaryBase.Encoding
    GrammarDictionaryBase.LoadDictionary()
    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()
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved