Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Document-Processing/Word/Word-Processor/angular/spell-check.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ export class AppComponent {

## Enable SpellCheck

To enable spell check in DocumentEditor, set [`enableSpellCheck`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/#enablespellcheck) property as `true` and then configure SpellCheckSettings.
To enable spell check in DocumentEditor, set [`enableSpellCheck`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/index-default#enablespellcheck) property as `true` and then configure SpellCheckSettings.

## Disable SpellCheck

To disable spell check in DocumentEditor, set [`enableSpellCheck`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/#enablespellcheck) property as `false` or remove [`enableSpellCheck`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/#enablespellcheck) property initialization code. The default value of this property is false.
To disable spell check in DocumentEditor, set [`enableSpellCheck`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/index-default#enablespellcheck) property as `false` or remove [`enableSpellCheck`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/index-default#enablespellcheck) property initialization code. The default value of this property is false.

## Spell check settings

Expand Down Expand Up @@ -73,8 +73,6 @@ Document Editor provides multi-language spell check support. You can add as many
this.container.documentEditor.spellChecker.languageID = 1033; //LCID of "en-us";
```

* Refer to the [Spell checker](https://gitea.syncfusion.com/essential-studio/ej2-documenteditor-server/) link for configuring spell checker in server-side.

### EnableOptimizedSpellCheck

Document Editor provides option to spellcheck page by page when loading the documents. The default value of this property is false, so when opening the document spellcheck web API will be called for each word in the document. To optimize the frequency of spellcheck web API calls, you can enable this property.
Expand Down Expand Up @@ -162,4 +160,6 @@ Ignore All: ignore all occurrence of a word from error in the entire document.

Using this option, you can open spell check dialog. Please see below screenshot for your reference.

![Spell check dialog](images/spell-check-dialog.png)
![Spell check dialog](images/spell-check-dialog.png)

* Refer to the [Spell checker](https://help.syncfusion.com/document-processing/word/word-processor/angular/web-services/core#spell-check) link for configuring spell checker in server-side.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: post
title: Spell Check in Document Editor Component
title: Spell Check in ASP.NET Core Document Editor Component | Syncfusion
description: Learn here all about spell check in Syncfusion Document Editor component of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Spell Check
Expand All @@ -17,9 +17,7 @@ Document editor supports performing spell checking for any input text. You can p
{% highlight cshtml tabtitle="CSHTML" %}
{% include code-snippet/document-editor/asp-net-core/spell-checker/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="Spell-checker.cs" %}
{% endhighlight %}{% endtabs %}

{% endtabs %}


## Features
Expand Down Expand Up @@ -147,4 +145,4 @@ Using this option, you can open spell check dialog.

![Spell check dialog](images/spell-check-dialog.png)

* Refer to the [Spell checker](https://gitea.syncfusion.com/essential-studio/ej2-documenteditor-server/) link for configuring spell checker in server-side.
* Refer to the [Spell checker](https://github.com/SyncfusionExamples/EJ2-Document-Editor-Web-Services/tree/master/ASP.NET%20Core#steps-to-configure-spell-checker) link for configuring spell checker in server-side.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: post
title: Spell Check in ASP.NET MVC Document Editor Component
title: Spell Check in ASP.NET MVC Document Editor Component | Syncfusion
description: Learn here all about spell check in Syncfusion ASP.NET MVC Document Editor component of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Spell Check
Expand All @@ -17,9 +17,7 @@ Document editor supports performing spell checking for any input text. You can p
{% highlight razor tabtitle="CSHTML" %}
{% include code-snippet/document-editor/asp-net-mvc/spell-checker/razor %}
{% endhighlight %}
{% highlight c# tabtitle="Spell-checker.cs" %}
{% endhighlight %}{% endtabs %}

{% endtabs %}


## Features
Expand Down Expand Up @@ -147,4 +145,4 @@ Using this option, you can open spell check dialog.

![Spell check dialog](images/spell-check-dialog.png)

* Refer to the [Spell checker](https://gitea.syncfusion.com/essential-studio/ej2-documenteditor-server/) link for configuring spell checker in server-side.
* Refer to the [Spell checker](https://github.com/SyncfusionExamples/EJ2-Document-Editor-Web-Services/tree/master/ASP.NET%20MVC#spell-check) link for configuring spell checker in server-side.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ spellChecker.allowSpellCheckAndSuggestion = true;
```

>Note: Document Editor requires server-side dependencies for spell check configuration.
Refer to the [Document Editor Web API service projects from GitHub](https://gitea.syncfusion.com/essential-studio/ej2-documenteditor-server/) link for configuring spell checker in server-side.To know about server-side dependencies, please refer this [page](./web-services-overview).
Refer to the [Document Editor Web API service projects](https://help.syncfusion.com/document-processing/word/word-processor/javascript-es5/web-services/core) link for configuring spell checker in server-side.To know about server-side dependencies, please refer this [page](./web-services-overview).

## Features

Expand Down Expand Up @@ -159,3 +159,5 @@ Ignore All: ignore all occurrence of a word from error in the entire document.
Using this option, you can open spell check dialog. Please see below screenshot for your reference.

![Spell check dialog in JavaScript document editor](images/spell-check-dialog.png)

* Refer to the [Spell checker](https://help.syncfusion.com/document-processing/word/word-processor/javascript-es5/web-services/core#spell-check) link for configuring spell checker in server-side.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ spellChecker.allowSpellCheckAndSuggestion = true;
```

>Note: Document Editor requires server-side dependencies for spell check configuration.
Refer to the [Document Editor Web API service projects from GitHub](https://gitea.syncfusion.com/essential-studio/ej2-documenteditor-server/) link for configuring spell checker in server-side.To know about server-side dependencies, please refer this [page](./web-services-overview).
Refer to the [Document Editor Web API service projects](https://help.syncfusion.com/document-processing/word/word-processor/javascript-es6/web-services/core#spell-check) link for configuring spell checker in server-side.To know about server-side dependencies, please refer this [page](./web-services-overview).

## Features

Expand Down Expand Up @@ -159,3 +159,5 @@ Ignore All: ignore all occurrence of a word from error in the entire document.
Using this option, you can open spell check dialog. Please see below screenshot for your reference.

![Spell check dialog in JavaScript document editor](images/spell-check-dialog.png)

* Refer to the [Spell checker](https://help.syncfusion.com/document-processing/word/word-processor/javascript-es6/web-services/core#spell-check) link for configuring spell checker in server-side.
12 changes: 6 additions & 6 deletions Document-Processing/Word/Word-Processor/react/spell-check.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,9 @@ documentEditor.spellChecker.allowSpellCheckAndSuggestion = false;

Document Editor provides multi-language spell check support. You can add as many languages (dictionaries) in the server-side and to use that language for spell checking in Document Editor, it must be matched with [`languageID`](https://ej2.syncfusion.com/react/documentation/api/document-editor/spellChecker#languageid) you pass in the Document Editor.

```ts
documentEditor.spellChecker.languageID = 1033; //LCID of "en-us";
```

* Refer to the [Spell checker](https://gitea.syncfusion.com/essential-studio/ej2-documenteditor-server/) link for configuring spell checker in server-side.
```ts
documentEditor.spellChecker.languageID = 1033; //LCID of "en-us";
```

### EnableOptimizedSpellCheck

Expand Down Expand Up @@ -190,4 +188,6 @@ Ignore All: ignore all occurrence of a word from error in the entire document.

Using this option, you can open spell check dialog. Please see below screenshot for your reference.

![Spell check dialog](images/spell-check-dialog.png)
![Spell check dialog](images/spell-check-dialog.png)

* Refer to the [Spell checker](https://help.syncfusion.com/document-processing/word/word-processor/react/web-services/core#spell-check) link for configuring spell checker in server-side.
2 changes: 1 addition & 1 deletion Document-Processing/Word/Word-Processor/vue/spell-check.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,4 +200,4 @@ Using this option, you can open spell check dialog. Please see below screenshot

![Spell check dialog](images/spell-check-dialog.png)

* Refer to the [Spell checker](https://gitea.syncfusion.com/essential-studio/ej2-documenteditor-server/) link for configuring spell checker in server-side.
* Refer to the [Spell checker](https://help.syncfusion.com/document-processing/word/word-processor/vue/web-services/core#spell-check) link for configuring spell checker in server-side.