hello B
hello B

Reputation: 963

How can I do spell check on strings?

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

Answers (2)

Tim Schmelter
Tim Schmelter

Reputation: 460138

For what it's worth, this was the first hit on google:

SpellCheck class

enter image description here

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

Freelancer
Freelancer

Reputation: 9074

Use Telerik Controls for .NET you will get it.

Follow this link

http://demos.telerik.com/aspnet-ajax/spell/examples/spellcheckvalidator/defaultcs.aspx?product=editor

Hope its helpful to you

Upvotes: 1

Related Questions