This is a migrated thread and some comments may be shown as answers.

Spell check box against standard text boxes

3 Answers 188 Views
TextBox
This is a migrated thread and some comments may be shown as answers.
Emmanuel
Top achievements
Rank 1
Emmanuel asked on 03 May 2019, 03:51 AM

Hello I find the spell checking function provided in Telerik controls to be confusing.   Is there an example of using the spell checker against standard text boxes in a winforms application?   All the documentation that I have found so far only refers to RichTextEditor input, or else RichTextbox, which I understand to be deprecated, but I need to spell check a standard windows textbox.   I also need it to be able to check uppercase as a option.

Thanks 

3 Answers, 1 is accepted

Sort by
0
Dimitar
Telerik team
answered on 03 May 2019, 05:32 AM
Hello Emmanuel,

You can use the RadSpellCheker for the regular textbox. Detailed in formation is available here: Spell check as you type.

I hope this helps. Should you have any other questions do not hesitate to ask.

Regards,
Dimitar
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
0
Emmanuel
Top achievements
Rank 1
answered on 03 May 2019, 06:01 AM
Thank you Dimitar, that's straightforward enough, but I cant find how to make it check uppercase, as per my original question.
0
Dimitar
Telerik team
answered on 03 May 2019, 07:57 AM
Hi Emmanuel,

I am sorry, I forgot about this. To make it work with uppercase letters you need to set the following property: 
var spellchecker = this.radSpellChecker1.GetControlSpellChecker(typeof(RadTextBox)) as TextBoxSpellChecker;
spellchecker.ShowAllCapitalLettersWord = true;
 
Do not hesitate to contact us if you have other questions.

Regards,
Dimitar
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
Tags
TextBox
Asked by
Emmanuel
Top achievements
Rank 1
Answers by
Dimitar
Telerik team
Emmanuel
Top achievements
Rank 1
Share this question
or