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
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,13 @@ The following code example illustrates how to enable optimized spell checking.
```typescript
this.container.documentEditor.spellChecker.enableOptimizedSpellCheck = true;
```
### EnableUserDictionary

By default, Document Editor maintains a shared custom dictionary for all users. You can enable user-specific dictionary support using the [`enableUserDictionary`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/spellchecker#enableuserdictionary-boolean) API, which stores and retrieves error words based on the `currentUser` property.

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

### Spell check dictionary cache

Expand Down
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;
```

### EnableUserDictionary

By default, Document Editor maintains a shared custom dictionary for all users. You can enable user-specific dictionary support using the `enableUserDictionary` API, which stores and retrieves error words based on the `currentUser` property.

```typescript
this.container.documentEditor.spellChecker.enableUserDictionary = 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
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;
```

### EnableUserDictionary

By default, Document Editor maintains a shared custom dictionary for all users. You can enable user-specific dictionary support using the `enableUserDictionary` API, which stores and retrieves error words based on the `currentUser` property.

```typescript
this.container.documentEditor.spellChecker.enableUserDictionary = 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
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,13 @@ The following code example illustrates how to enable optimized spell checking.
```ts
documentEditor.spellChecker.enableOptimizedSpellCheck = true;
```
### EnableUserDictionary

By default, Document Editor maintains a shared custom dictionary for all users. You can enable user-specific dictionary support using the [`enableUserDictionary`](https://ej2.syncfusion.com/javascript/documentation/api/document-editor/spellchecker#enableuserdictionary-boolean) API, which stores and retrieves error words based on the `currentUser` property.

```typescript
documentEditor.spellChecker.enableUserDictionary = true;
```

### Spell check dictionary cache

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;
```

### EnableUserDictionary

By default, Document Editor maintains a shared custom dictionary for all users. You can enable user-specific dictionary support using the [`enableUserDictionary`](https://ej2.syncfusion.com/documentation/api/document-editor/spellchecker#enableuserdictionary-boolean) API, which stores and retrieves error words based on the [`currentUser`] property.

```ts
documentEditor.spellChecker.enableUserDictionary = 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
7 changes: 7 additions & 0 deletions Document-Processing/Word/Word-Processor/react/spell-check.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,13 @@ The following code example illustrates how to enable optimized spell checking.
```ts
documentEditor.spellChecker.enableOptimizedSpellCheck = true;
```
### EnableUserDictionary

By default, Document Editor maintains a shared custom dictionary for all users. You can enable user-specific dictionary support using the [`enableUserDictionary`](https://ej2.syncfusion.com/react/documentation/api/document-editor/spellchecker#enableuserdictionary-boolean) API, which stores and retrieves error words based on the `currentUser` property.

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

### Spell check dictionary cache

Expand Down
7 changes: 7 additions & 0 deletions Document-Processing/Word/Word-Processor/vue/spell-check.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,13 @@ The following code example illustrates how to enable optimized spell checking.
```ts
this.container.documentEditor.spellChecker.enableOptimizedSpellCheck = true;
```
### EnableUserDictionary

By default, Document Editor maintains a shared custom dictionary for all users. You can enable user-specific dictionary support using the [`enableUserDictionary`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/spellchecker#enableuserdictionary-boolean) API, which stores and retrieves error words based on the `currentUser` property.

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

### Spell check dictionary cache

Expand Down