I have created a TextEditor control, which consists of an UltraFormattedTextEditor with a toolbar of available functionality.
I have an UltraSpellChecker associated with this control. When spell checking any text, the user can select "Add Word to Dictionary" and the word is successfully added to their User Dictionary.
How do I make the Ignore functionality work? (At the moment, the user can select "Ignore Once" or "Ignore All", and the word is ignored. But when the user saves this document and opens it again, the spell checker underlines the word as mispelled; i.e. it does not remember to ignore the word.)
Hey Katie,
How did you get the "Add Word to Dictionary" option ??
Thanks
Hi there,To get the "Add to Dictionary" option, specify a path for the UserDictionary property of the spell checker
this.ultraSpellChecker1.UserDictionary = Path.Combine(Path.Combine(Path.Combine(System.Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "Exact Abacus"), "3EXNET"), "UserDictionaryForDesignSystem.txt");
Hope this helps,Katie :-)
Katie