menu

WPF

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

    Show / Hide Table of Contents

    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
    DictionaryBase
    GrammarDictionaryBase
    IspellDictionaryBase
    IspellDictionary
    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 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()
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved