Skip to main content
A newer version of this page is available. .

Dictionaries

  • 7 minutes to read

The SpellChecker uses special spell checking algorithms, which require a dictionary to provide the list of words and/or rules. Therefore, to add spell-checking to your project, you need to:

  • Choose the most appropriate dictionary type (Simple, ISpell, OpenOffice or a Hunspell).
  • Add it to your application for every particular language (culture) you wish to support.
  • Add a custom dictionary for every language, if you wish to allow end-users to add custom words.

Note

If no dictionary is specified, the SpellChecker component uses default English dictionary. When any other dictionary is added, even a custom dictionary, default dictionary is not loaded.

Dictionaries of different types have the same base interface - ISpellCheckerDictionary. All dictionaries should be added to the SpellCheckerBase.Dictionaries collection of the SpellChecker component. You can add multiple dictionaries of the same type to this collection. For example, you may add different dictionaries for different languages to a single SpellChecker, and then the SpellChecker chooses appropriate dictionaries according to its current SpellCheckerBase.Culture.

Dictionaries can be shared by several SpellChecker components. You can add them to the SharedDictionaryStorage and then set SpellCheckerBase.UseSharedDictionaries to true. This helps avoid time-consuming operations on loading dictionaries and maintains a single custom dictionary for all SpellChecker components in your application.

To reduce application loading time and memory consumption, you can specify for a dictionary to not load until required - the SpellCheckerBase.LoadOnDemand property.

After each dictionary is successfully loaded, the ISpellCheckerDictionary.Loaded event fires. You can subscribe to the SpellCheckerBase.UnhandledException event to catch problematic situations, which may happen while a dictionary is loaded and prepared for use.

Simple Dictionary

This dictionary type lists words in a plain text file where each line contains only one word. To use this dictionary, manually prepare a text file (or export any existing dictionary to a plain text file).

The following code demonstrates how to create the SpellCheckerDictionary dictionary at runtime. It also shows how to use an alphabet file containing all letters in your preferred language.


using System.Globalization;
using DevExpress.XtraSpellChecker;
//...

SpellCheckerDictionary simpleDictionary = new SpellCheckerDictionary();
simpleDictionary.AlphabetPath = "EnglishAlphabet.txt";
simpleDictionary.Culture = new CultureInfo("en-US");
simpleDictionary.DictionaryPath = "american.txt";

spellChecker1.Dictionaries.Add(simpleDictionary);

ISpell Dictionary

An ideal dictionary would contain all the words of a given language. However, it’s much smaller and more effective to split the dictionary into several parts (depending on the language). For example, in several Indo-European languages, including English, words are derived from the base by adding affixes - prefixes or postfixes. So the size of the dictionary can be greatly reduced if the base words, affixes and the rules for adding affixes to base words are placed into separate files. The complete list of words could be built in-place when necessary. This technique especially proves its effectiveness for synthetic languages (rich in verbal and inflective forms) - Lithuanian or Russian for example.

The ISpell dictionary is based upon this approach. It includes base words and affixes. Physically it is represented by the Alphabet file - *.txt, the Affix file - *.aff and the Base Words file - *.xlg or *.hash. (Note: SpellChecker doesn’t provide support for compressed *.hash files, but you may use *.xlg files).

ISpell dictionaries are primarily developed by enthusiasts all over the world, and you may freely find them for different languages on the Web. Additionally, while developed by different individuals, each ISpell dictionary may be redistributed under its specific license agreement. Most of them are free. Visit the English Spell Checker Dictionaries page for more information.

The following code demonstrates how to create the SpellCheckerISpellDictionary dictionary at runtime.

using DevExpress.XtraSpellChecker;
using System;
using System.Globalization;
            spellChecker1.Dictionaries.Clear();

            SpellCheckerISpellDictionary ispellDictionaryEnglish = new SpellCheckerISpellDictionary();
            ispellDictionaryEnglish.DictionaryPath = @"Dictionaries\ISpell\en_US\american.xlg";
            ispellDictionaryEnglish.GrammarPath = @"Dictionaries\ISpell\en_US\english.aff";
            ispellDictionaryEnglish.AlphabetPath = @"Dictionaries\EnglishAlphabet.txt";
            ispellDictionaryEnglish.Culture = new CultureInfo("en-US");
            ispellDictionaryEnglish.Load();
            spellChecker1.Dictionaries.Add(ispellDictionaryEnglish);

Hunspell Dictionary

Hunspell allows dictionaries to define complex rules for compound word usage and was designed for languages with rich morphology and complex word compounding or character encoding. Its advantages include morphological analysis, Unicode support and reduced memory usage.

Hunspell dictionaries are used in the OpenOffice, FireFox, and OpenSpell spell check engines. To download them, visit English Spell Checker Dictionaries or Hunspell pages.

The Hunspell dictionary includes two files - the Affix file with grammar rules- *.aff and the Base Words file - *.dic file. The SpellChecker component uses them to create a HunspellDictionary. You can specify the HunspellDictionary.GrammarPath and the DictionaryBase.DictionaryPath, then use the DictionaryBase.Load method to load a dictionary. Or you can load both dictionary parts from streams via the HunspellDictionary.LoadFromStream method.

The following code demonstrates how to create the HunspellDictionary dictionary at runtime.

using DevExpress.XtraSpellChecker;
using System;
using System.Globalization;
            spellChecker1.Dictionaries.Clear();

            HunspellDictionary hunspellDictionaryEnglish = new HunspellDictionary();
            hunspellDictionaryEnglish.DictionaryPath = @"Dictionaries\Hunspell\en_US\en_US.dic";
            hunspellDictionaryEnglish.GrammarPath = @"Dictionaries\Hunspell\en_US\en_US.aff";
            hunspellDictionaryEnglish.Culture = new CultureInfo("en-US");
            hunspellDictionaryEnglish.Load();
            spellChecker1.Dictionaries.Add(hunspellDictionaryEnglish);

Open Office Dictionary

The Open Office dictionary is similar to ISpell, since it also generates the entire word list based on the Affix file - *.aff, and the Base Words file - *.dic. But note that this standard provides different rules for the Affix file than ISpell, so you can’t use the same Affix files for both dictionaries.

The dictionaries and affix files are a part of the OpenOffice.org project and can be downloaded from the Extensions OpenOffice Page. Note that OpenOffice license term can be unacceptable for the commercial projects.

The following code demonstrates how to create the SpellCheckerOpenOfficeDictionary dictionary at runtime.

using DevExpress.XtraSpellChecker;
using System;
using System.Globalization;
            spellChecker1.Dictionaries.Clear();

            SpellCheckerOpenOfficeDictionary openOfficeDictionaryEnglish = new SpellCheckerOpenOfficeDictionary();
            openOfficeDictionaryEnglish.DictionaryPath = @"Dictionaries\OpenOffice\en_US\en_US.dic";
            openOfficeDictionaryEnglish.GrammarPath = @"Dictionaries\OpenOffice\en_US\en_US.aff";
            openOfficeDictionaryEnglish.Culture = new CultureInfo("en-US");
            spellChecker1.Dictionaries.Add(openOfficeDictionaryEnglish);

Custom Dictionary

Custom dictionaries are intended to store user additions (words that are considered by users as “correct”). For example, after a SpellChecker has a custom dictionary for the current Culture, an end-user is able to click on the Add button and add this word to the currently available custom dictionary. The other dictionary types don’t support this feature.

Also, a set of words in a custom dictionary may be manually changed by an end-user by invoking the Custom Dictionary dialog via the Edit button on the Spelling Options dialog.

The following code demonstrates how to create the SpellCheckerCustomDictionary dictionary at runtime.

using DevExpress.XtraSpellChecker;
using System;
using System.Globalization;
            SpellCheckerCustomDictionary customDictionary = new SpellCheckerCustomDictionary();
            customDictionary.AlphabetPath = @"Dictionaries\EnglishAlphabet.txt";
            customDictionary.DictionaryPath = @"Dictionaries\CustomEnglish.dic";
            customDictionary.Culture = CultureInfo.InvariantCulture;
            spellChecker1.Dictionaries.Add(customDictionary);

Note

The SpellChecker overwrites a custom dictionary every time a new word is added to it or it is manually changed by an end-user. Therefore, this file must not be set to read-only.

If the dictionary is not available, make sure that it is not held by another processes.

See Also