Reputation: 963
does anybody know any C# multilingual spell check library ? I don't need a real time spell check. Only check on strings.
thanks!
Upvotes: 4
Views: 5825
Reputation: 460138
For what it's worth, this was the first hit on google:
SpellCheck
class
From MSDN:
Provides real-time spell-checking functionality to text-editing controls, such as TextBox and RichTextBox.
To enable the spelling checker, set the SpellCheck.IsEnabled property to true on a text-editing control. When this spelling checker is enabled, misspelled words are underlined by using a red wavy line, as shown in the following illustration. Spelling checker is supported only when WPF provides a default dictionary. In .NET Framework 4, WPF provides dictionaries for English, French, German, and Spanish.
Edit I've only just recognized that it's for WPF only. Then you could have a look at this SO-question: Spell check in winforms
Upvotes: 4
Reputation: 9074
Use Telerik Controls for .NET you will get it.
Follow this link
Hope its helpful to you
Upvotes: 1