Hi there, I try to use a custom dictionary, just a list of words (UTF-8), It does not have any effect, all its words are underlined with red in the textbox. I tried only non-accented words that could occur in English as well. Please advise.
.NET 6.0, Syncfusion 19.3.0.57
CultureInfo culture = new CultureInfo("en-US");
_spellChecker.Dictionaries = new DictionaryCollection
{
new CustomDictionary
{
Culture = culture,
DictionaryUri = new Uri(Path.Combine( _pathResources, "huLexWords.txt" ), UriKind.Absolute),
}
};
_spellChecker.Culture = culture;
SfSpellChecker.SetSpellChecker(TextEditor, _spellChecker);
Sudharsan, even your example does not work in my environment. I am a bit confused.
Sudharsan, I think a post of mine has been lost. Please close this thread and I will open a new one with a hopefully clear explanation of my findings.