layout | title | description | platform | control | documentation |
---|---|---|---|---|---|
post |
Custom Dictionary in Windows Forms Spell Checker control | Syncfusion |
Learn about Custom Dictionary support in Syncfusion Windows Forms Spell Checker (SpellCheckerAdv) control and more details. |
WPF |
SpellCheckerAdv |
ug |
You can use a default and custom dictionaries to spell check the document based on your need. You can also spell check for any culture and languages using various dictionaries.
SpellCheckerAdv provides built-in dictionary for English
language and it provides suitable suggestion of the error words.
You can add your own dictionary to SpellCheckerAdv.Dictionaries collection. SpellCheckerAdv
support 3 standard dictionary file format:
- Hunspell
- Ispell
- OpenOffice
You can check spelling mistakes using Hunspell
dictionary format. This format contains files as follows,
- Affix file with grammar rules-
*.aff
, - Basic Words file -
*.dic
file.
1.Add your HunspellDictionary's required culture *.aff
and *.dic
files and add them as Resource
into the application.
2.Create a HunspellDictionary
instance and add the basic word & grammar file path to the HunspellDictionary.DictionaryPath & HunspellDictionary.GrammarPath properties and add the culture to the HunspellDictionary.Culture property.
3.Add the HunspellDictionary
into the SpellCheckerAdv.Dictionaries collection
4.Setting the required culture to the SpellCheckerAdv.Culture
property.
N> The following code snippets shows how to add Hunspell dictionary to the SpellChecker
. Please refer Adding SpellCheckerAdv to RichTextBox control to know how to configure SpellCheckerAdv.
{% tabs %} {% highlight C# %}
//Creating a culture instance CultureInfo culture = new CultureInfo("fr-FR");
SpellCheckerAdv SpellChecker = new SpellCheckerAdv();
// Adding Hunspell dictonaries in Dictionaries collection SpellChecker.Dictionaries = new DictionaryCollection();
//Add French culture Hunspell dictionary SpellChecker.Dictionaries.Add( new HunspellDictionary() { Culture = culture, GrammarPath = @"FrenchDictionary\french.aff", DictionaryPath = @"FrenchDictionary\french.dic" } );
//Setting a French culture for SpellChecker SpellChecker.Culture = culture;
{% endhighlight %} {% endtabs %}
N> You can add multiple HunspellDictionary
with various culture files into the SpellCheckerAdv.Dictionaries
collection. Based on the SpellCheckerAdv.Culture
respective HunspellDictionary
is used for spell check.
You can check spelling mistakes using Ispell
dictionary format. This format contains files as follows,
Ispell
dictionary contains two files as follows,
- Affix file with grammar rules-
*.aff
, - Basic Words file -
*.xlg
or*.dic
file.
1.Add your IspellDictionary's required culture *.aff
and *.dic
files and add them as Resource
into the application.
2.Create a IspellDictionary
instance and add the basic word & grammar file path to the IspellDictionary.DictionaryPath & IspellDictionary.GrammarPath properties and add the culture to the IspellDictionary.Culture property.
3.Add the IspellDictionary
into the SpellCheckerAdv.Dictionaries
collection
4.Setting the required culture to the SpellCheckerAdv.Culture
property.
N> The following code snippets only explain the insertion of the Ispell dictionary to the SpellChecker
. You can get code snippets to add a SpellChecker
, from Adding SpellCheckerAdv to RichTextBox control topic.
{% tabs %} {% highlight C# %}
//Creating a culture instance CultureInfo culture = new CultureInfo("es-ES");
SpellCheckerAdv SpellChecker = new SpellCheckerAdv();
// Adding Ispell dictonaries in Dictionaries collection SpellChecker.Dictionaries = new DictionaryCollection();
//Add Spanish culture Ispell dictionary SpellChecker.Dictionaries.Add( new IspellDictionary() { Culture = culture, GrammarPath = @"SpanishDictionary\spanish.aff", DictionaryPath = @"SpanishDictionary\spanish.dic" } );
//Setting a Spanish culture for SpellChecker SpellChecker.Culture = culture;
{% endhighlight %} {% endtabs %}
N> You can add multiple IspellDictionary
with various culture files into the SpellCheckerAdv.Dictionaries
collection. Based on the SpellCheckerAdv.Culture
respective IspellDictionary
is used for spell check.
You can check spelling mistakes using OpenOffice
dictionary format. This format contains files as follows,
OpenOffice
dictionary contains two files as follows,
- Affix file with grammar rules-
*.aff
, - Basic Words file -
*.dic
file.
1.Add your OpenOfficeDictionary's required culture *.aff
and *.dic
files and add them as Resource
into the application.
2.Create a OpenOfficeDictionary
instance and add the basic word & grammar file path to the OpenOfficeDictionary.DictionaryPath & OpenOfficeDictionary.GrammarPath properties and add the culture to the OpenOfficeDictionary.Culture property.
3.Add the OpenOfficeDictionary
into the SpellCheckerAdv.Dictionaries
collection
4.Setting the required culture to the SpellCheckerAdv.Culture
property.
N> The following code snippets only explain the insertion of the OpenOffice dictionary to the SpellChecker
. You can get code snippets to add a SpellChecker
, from Adding SpellCheckerAdv to RichTextBox control topic.
{% tabs %} {% highlight c# %}
//Creating a Spanish culture instance CultureInfo culture = new CultureInfo("es-ES");
SpellCheckerAdv SpellChecker = new SpellCheckerAdv();
// Adding OpenOffice dictonaries in Dictionaries collection SpellChecker.Dictionaries = new DictionaryCollection();
//Add Spanish culture OpenOffice dictionary SpellChecker.Dictionaries.Add( new OpenOfficeDictionary() { Culture = culture, GrammarPath = @"SpanishDictionary\spanish.aff", DictionaryPath = @"SpanishDictionary\spanish.dic" } );
//Setting a spanish culture for SpellChecker SpellChecker.Culture = culture;
{% endhighlight %} {% endtabs %}
N> You can add multiple OpenOfficeDictionary
with various culture files into the SpellCheckerAdv.Dictionaries
collection. Based on the SpellCheckerAdv.Culture
respective OpenOfficeDictionary
is used for spell check.
If you want to add words that is not available in dictionary, you can add it using CustomDictionary. This dictionary does not has a grammar file, it accepts only dictionary file that contains a list of words. Users can also add words to this custom dictionary by clicking Add to Dictionary
button available in dialog or context menu.
1.Create a custom dictionary text file as Resource
into the application
2.Create a CustomDictionary
instance and add the custom word file path to the CustomDictionary.DictionaryPath property and add the culture to the CustomDictionary.Culture property.
3.Add the CustomDictionary
into the SpellCheckerAdv.Dictionaries
collection
4.Setting the required culture to the SpellCheckerAdv.Culture
property.
N> The following code snippets only explain the insertion of the custom dictionary to the SpellChecker
. You can get code snippets to add a SpellChecker
, from Adding SpellCheckerAdv to RichTextBox control topic.
{% tabs %} {% highlight C# %}
//Creating a culture instance CultureInfo culture = new CultureInfo("en-US");
SpellCheckerAdv SpellChecker = new SpellCheckerAdv();
//Add Custom dictionary for US culture SpellChecker.Dictionaries.Add( new CustomDictionary() { Culture = culture, DictionaryPath = @"\English\Custom_en-US.txt" } );
//Add US culture OpenOffice dictionary SpellChecker.Dictionaries.Add( new OpenOfficeDictionary() { Culture = culture, GrammarPath = @"USDictionary\en-US.aff", DictionaryPath = @"USDictionary\en-US.dic" } );
//Setting a US culture for SpellChecker SpellChecker.Culture = culture;
{% endhighlight %} {% endtabs %}
N> If you only use the custom dictionary, all words that are not included in the dictionary will be shown as error words.
N> You can add multiple CustomDictionary
with various culture word files into the SpellCheckerAdv.Dictionaries
collection. Based on the SpellCheckerAdv.Culture
respective CustomDictionary
is used for spell check.
You can add Hunspell
, Ispell
, or OpenOffice
dictionaries one or more times with various culture into the SpellCheckerAdv.Dictionaries
collection. You can change the spell check culture at runtime by changing the SpellCheckerAdv.Culture
property. Based on the current SpellCheckerAdv.Culture
respective dictionary is used to spell check.
{% tabs %} {% highlight C# %}
//Creating a culture instance CultureInfo culture = new CultureInfo("fr-FR");
SpellCheckerAdv SpellChecker = new SpellCheckerAdv();
// Adding Hunspell dictonaries in Dictionaries collection SpellChecker.Dictionaries = new DictionaryCollection();
//Add French culture Hunspell dictionary SpellChecker.Dictionaries.Add( new HunspellDictionary() { Culture = culture, GrammarPath = @"FrenchDictionary\fr-FR.aff", DictionaryPath = @"FrenchDictionary\fr-FR.dic" } );
//Add Spanish culture Hunspell dictionary SpellChecker.Dictionaries.Add( new HunspellDictionary() { Culture = new CultureInfo("es-ES"), GrammarPath = @"SpanishDictionary\es-ES.aff", DictionaryPath = @"SpanishDictionary\es-ES.dic" } );
//Add US culture Hunspell dictionary SpellChecker.Dictionaries.Add( new HunspellDictionary() { Culture = new CultureInfo("en-US"), GrammarPath = @"USDictionary\en-US.aff", DictionaryPath = @"USDictionary/en-US.dic" } );
//Setting a French culture for SpellChecker SpellChecker.Culture = culture;
{% endhighlight %} {% endtabs %}
Here, SpellChecker.Culture
is fr-FR
culture. So, fr-FR
cultured Hunspell
dictionary is used as speck check dictionary.