We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

RichTextBoxEditor SpellCheck

I would like to hide "Copy the SpellCheck folder from C:\Program Files\Syncfusion\Essential Studio\4.xxx\Resources\ToolsBase\SpellCheck to the root of your web application" message and I don't want to use SpellCheck.

Thank you!


1 Reply

AD Administrator Syncfusion Team December 8, 2006 04:20 PM UTC

Hi Joakin,

Spell Check control is integrated in RichTextEditor control.Now it is not possible to hide the message when SpellCheck folder is not copied to the root of the application.

But you can hide this message by creating empty folder named as 'SpellCheck' and also remove the 'SpellCheck' option in Edit Insert Built-in Toolbar of RichTextEditor Control.

Please insert the following code snippet to remove the SpellCheck option.

[C#]

//Create instance for Edit Insert Build-In ToolBar
ToolBar EditInsertTools = (ToolBar)RichTextEditor1.FindControl("editInsertTools");
//Create instance for SpellCheck ToolBar Item
ToolBarItem SpellCheck = EditInsertTools.Items.Find(12);
//Remove SpellCheck Item
EditInsertTools.Items.Remove(SpellCheck);

[VB]

'Create instance for Edit Insert Build-In ToolBar
Private EditInsertTools As ToolBar = CType(RichTextEditor1.FindControl("editInsertTools"), ToolBar)
'Create instance for SpellCheck ToolBar Item
Private SpellCheck As ToolBarItem = EditInsertTools.Items.Find(12)
'Remove SpellCheck Item
EditInsertTools.Items.Remove(SpellCheck)

Thank you for using syncfusion products.

Regards,
Sureshsekaran.

Loader.
Live Chat Icon For mobile
Up arrow icon