Skip to content
10 changes: 9 additions & 1 deletion Document-Processing/Word/Word-Processor/angular/spell-check.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,14 @@ The following code example illustrates how to enable optimized spell checking.
this.container.documentEditor.spellChecker.enableOptimizedSpellCheck = true;
```

### Ignore uppercase

By default, the DocumentEditor spell checker evaluates all words, including those written in uppercase. To exclude uppercase words such as acronyms or constants from spell check validation, enable the [`ignoreUppercase`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/spellchecker#ignoreuppercase-boolean) property.

```typescript
this.container.documentEditor.spellChecker.ignoreUppercase = true;
```

### Spell check dictionary cache

Starting from `v20.1.0.xx`, we have optimized the performance and memory usage of spell checker by adding a static method to initialize the dictionaries with specified cache count.
Expand Down Expand Up @@ -162,4 +170,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://help.syncfusion.com/document-processing/word/word-processor/angular/web-services/core#spell-check) link for configuring spell checker in server-side.
* 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
Expand Up @@ -67,6 +67,14 @@ Document editor provides option to spellcheck page by page when loading the docu
this.container.documentEditor.spellChecker.enableOptimizedSpellCheck = true;
```

### Ignore uppercase

By default, the DocumentEditor spell checker evaluates all words, including those written in uppercase. To exclude uppercase words such as acronyms or constants from spell check validation, enable the `ignoreUppercase` property.

```typescript
this.container.documentEditor.spellChecker.ignoreUppercase = true;
```

### Spell check dictionary cache

Starting from `v20.1.0.xx`, the performance and memory usage of spell checker has been optimized by adding a static method to initialize the dictionaries with specified cache count.
Expand Down Expand Up @@ -145,4 +153,4 @@ Using this option, you can open spell check dialog.

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

* 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.
* 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
Expand Up @@ -68,6 +68,14 @@ Document editor provides option to spellcheck page by page when loading the docu
this.container.documentEditor.spellChecker.enableOptimizedSpellCheck = true;
```

### Ignore uppercase

By default, the DocumentEditor spell checker evaluates all words, including those written in uppercase. To exclude uppercase words such as acronyms or constants from spell check validation, enable the `ignoreUppercase` property.

```typescript
this.container.documentEditor.spellChecker.ignoreUppercase = true;
```

### Spell check dictionary cache

Starting from `v20.1.0.xx`, the performance and memory usage of spell checker has been optimized by adding a static method to initialize the dictionaries with specified cache count.
Expand Down Expand Up @@ -146,4 +154,4 @@ Using this option, you can open spell check dialog.

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

* 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.
* 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 @@ -81,6 +81,14 @@ The following code example illustrates how to enable optimized spell checking.
documentEditor.spellChecker.enableOptimizedSpellCheck = true;
```

### Ignore uppercase

By default, the DocumentEditor spell checker evaluates all words, including those written in uppercase. To exclude uppercase words such as acronyms or constants from spell check validation, enable the [`ignoreUppercase`](https://ej2.syncfusion.com/javascript/documentation/api/document-editor/spellchecker#ignoreuppercase-boolean) property.

```ts
documentEditor.spellChecker.ignoreUppercase = true;
```

### Spell check dictionary cache

Starting from `v20.1.0.xx`, we have optimized the performance and memory usage of spell checker by adding a static method to initialize the dictionaries with specified cache count.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,14 @@ The following code example illustrates how to enable optimized spell checking.
documentEditor.spellChecker.enableOptimizedSpellCheck = true;
```

### Ignore uppercase

By default, the DocumentEditor spell checker evaluates all words, including those written in uppercase. To exclude uppercase words such as acronyms or constants from spell check validation, enable the [`ignoreUppercase`](https://ej2.syncfusion.com/documentation/api/document-editor/spellchecker#ignoreuppercase-boolean) property.

```ts
documentEditor.spellChecker.ignoreUppercase = true;
```

### Spell check dictionary cache

Starting from `v20.1.0.xx`, we have optimized the performance and memory usage of spell checker by adding a static method to initialize the dictionaries with specified cache count.
Expand Down
10 changes: 9 additions & 1 deletion Document-Processing/Word/Word-Processor/react/spell-check.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,14 @@ The following code example illustrates how to enable optimized spell checking.
documentEditor.spellChecker.enableOptimizedSpellCheck = true;
```

### Ignore uppercase

By default, the DocumentEditor spell checker evaluates all words, including those written in uppercase. To exclude uppercase words such as acronyms or constants from spell check validation, enable the [`ignoreUppercase`](https://ej2.syncfusion.com/react/documentation/api/document-editor/spellchecker#ignoreuppercase-boolean) property.

```ts
documentEditor.spellChecker.ignoreUppercase = true;
```

### Spell check dictionary cache

Starting from `v20.1.0.xx`, we have optimized the performance and memory usage of spell checker by adding a static method to initialize the dictionaries with specified cache count.
Expand Down Expand Up @@ -190,4 +198,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://help.syncfusion.com/document-processing/word/word-processor/react/web-services/core#spell-check) link for configuring spell checker in server-side.
* 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.
10 changes: 9 additions & 1 deletion Document-Processing/Word/Word-Processor/vue/spell-check.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,14 @@ The following code example illustrates how to enable optimized spell checking.
this.container.documentEditor.spellChecker.enableOptimizedSpellCheck = true;
```

### Ignore uppercase

By default, the DocumentEditor spell checker evaluates all words, including those written in uppercase. To exclude uppercase words such as acronyms or constants from spell check validation, enable the [`ignoreUppercase`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/spellchecker#ignoreuppercase-boolean) property.

```ts
this.container.documentEditor.spellChecker.ignoreUppercase = true;
```

### Spell check dictionary cache

Starting from `v20.1.0.xx`, we have optimized the performance and memory usage of spell checker by adding a static method to initialize the dictionaries with specified cache count.
Expand Down Expand Up @@ -200,4 +208,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://help.syncfusion.com/document-processing/word/word-processor/vue/web-services/core#spell-check) 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.