Skip to content

Commit b563c8e

Browse files
committed
Merge branch 'Ej2-979841-PlatformName' of https://github.com/syncfusion-content/document-processing-docs into Ej2-979841-PlatformName
2 parents f081736 + a1ab39e commit b563c8e

File tree

47 files changed

+79
-95
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+79
-95
lines changed

Document-Processing/Word/Word-Processor/angular/collaborative-editing/using-redis-cache-asp-net-core.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
title: Collaborative Editing in Angular | Syncfusion
4-
description: Learn how to enable collaborative editing in Syncfusion Angular Document editor control of Syncfusion Essential JS 2 and more.
3+
title: Collaborative Editing in Angular with Redis in ASP.NET Core | Syncfusion
4+
description: Learn about collaborative editing in Syncfusion Angular Document editor control With Redis in ASP.NET Core of Syncfusion Essential JS 2 and more
55
platform: document-processing
66
control: Collaborative Editing
77
documentation: ug

Document-Processing/Word/Word-Processor/angular/collaborative-editing/using-redis-cache-java.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
title: Collaborative Editing in Angular Document editor control | Syncfusion
4-
description: Learn how to enable collaborative editing in Syncfusion Angular Document editor control of Syncfusion Essential JS 2 and more.
3+
title: Collaborative Editing in Angular with Redis in Java | Syncfusion
4+
description: Learn about collaborative editing in Syncfusion Angular Document editor control With Redis in Java of Syncfusion Essential JS 2 and more
55
platform: document-processing
66
control: Collaborative Editing Java
77
documentation: ug

Document-Processing/Word/Word-Processor/angular/comments.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ export class AppComponent implements OnInit {
210210
211211
## Events
212212

213-
DocumentEditor provides [beforeCommentAction](https://ej2.syncfusion.com/angular/documentation/api/document-editor/#beforecommentaction) event, which is triggered on comment actions like Post, edit, reply, resolve and reopen. This event provides an opportunity to perform custom logic on comment actions like Post, edit, reply, resolve and reopen. The event handler receives the [CommentActionEventArgs](https://ej2.syncfusion.com/angular/documentation/api/document-editor/commentActionEventArgs) object as an argument, which allows access to information about the comment.
213+
DocumentEditor provides [beforeCommentAction](https://ej2.syncfusion.com/angular/documentation/api/document-editor/#beforecommentaction) event, which is triggered on comment actions like Post, edit, reply, resolve and reopen. This event provides an opportunity to perform custom logic on comment actions like Post, edit, reply, resolve and reopen. The event handler receives the [CommentActionEventArgs](https://ej2.syncfusion.com/angular/documentation/api/document-editor/commentActionEventArgs/) object as an argument, which allows access to information about the comment.
214214

215215
To demonstrate a specific use case, let’s consider an example where we want to restrict the delete functionality based on the author’s name. The following code snippet illustrates how to allow only the author of a comment to delete:
216216

Document-Processing/Word/Word-Processor/angular/content-control.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ let contentControlInfos: ContentControlInfo[] = this.container.documentEditor.ex
8989

9090
## Reset content control
9191

92-
Content control properties can be reset using the [`resetcontentcontroldata`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/#resetcontentcontroldata)
92+
Content control properties can be reset using the [`resetContentControlData`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/#resetcontentcontroldata)
9393

9494
{% highlight ts %}
9595
let data: ContentControlInfo[] = [];

Document-Processing/Word/Word-Processor/angular/fields.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Document Editor has preservation support for all types of fields in an existing
1414

1515
## Adding Fields
1616

17-
You can add a field to the document by using [`insertField`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/editor#insertfield) method in [`Editor`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/editor/) module.
17+
You can add a field to the document by using [`insertField`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/editor/#insertfield) method in [`Editor`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/editor/) module.
1818

1919
The following example code illustrates how to insert merge field programmatically by providing the field code and field result.
2020

@@ -58,7 +58,7 @@ let fieldInfo: FieldInfo = this.documentEditor.selection.getFieldInfo();
5858
5959
## Set field info
6060

61-
You can modify the field code and field result of the current selected field by using [`setFieldInfo`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/editor#setfieldinfo) method in the [`Editor`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/editor/) module.
61+
You can modify the field code and field result of the current selected field by using [`setFieldInfo`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/editor/#setfieldinfo) method in the [`Editor`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/editor/) module.
6262

6363
```typescript
6464
//Gets the field information for the selected field.

Document-Processing/Word/Word-Processor/angular/find-and-replace.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ The [`Search`](https://ej2.syncfusion.com/angular/documentation/api/document-edi
3636

3737
|API Name|Type |Description|
3838
|---|---|---|
39-
|[`findAll()`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/search#findall/)| Method |Searches for specified text in the whole document and highlights it with yellow.|
40-
|[`searchResults`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/search#searchresults/) |Property |This is an instance of [`SearchResults`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/searchResults/).|
41-
|[`find()`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/search#find/) | Method |Find immediate occurrence of specified text from cursor position in the document and highlights it with yellow.|
39+
|[`findAll()`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/search/#findall/)| Method |Searches for specified text in the whole document and highlights it with yellow.|
40+
|[`searchResults`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/search/#searchresults/) |Property |This is an instance of [`SearchResults`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/searchResults/).|
41+
|[`find()`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/search/#find/) | Method |Find immediate occurrence of specified text from cursor position in the document and highlights it with yellow.|
4242

4343
### Find the immediate occurrence in the document
4444

45-
Using [`find()`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/search#find/) method, you can find the immediate occurrence of specified text from current cursor position in the document.
45+
Using [`find()`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/search/#find/) method, you can find the immediate occurrence of specified text from current cursor position in the document.
4646

4747
The following example code illustrates how to use find in Document editor.
4848

@@ -54,7 +54,7 @@ this.documenteditor.search.find('Some text', 'None');
5454
5555
### Find all the occurrences in the document
5656

57-
Using [`findAll()`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/search#findall/) method, you can find all the occurrences of specified text in the whole document and highlight it with yellow.
57+
Using [`findAll()`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/search/#findall/) method, you can find all the occurrences of specified text in the whole document and highlight it with yellow.
5858

5959
The following example code illustrates how to find All the text in the document.
6060

@@ -70,14 +70,14 @@ The [`SearchResults`](https://ej2.syncfusion.com/angular/documentation/api/docum
7070

7171
|API Name|Type |Description|
7272
|---|---|---|
73-
|[`length`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/searchResults#length/)|Property|Returns the total number of results found on the search.|
74-
|[`index`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/searchResults#index/)|Property|Returns the index of selected search result. You can change the value for this property to move the selection.|
75-
|[`replaceAll()`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/searchresults#replaceall/)|Method|Replaces all the occurrences with specified text.|
76-
|[`clear()`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/searchResults#clear/)|Method|Clears the search result.|
73+
|[`length`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/searchResults/#length/)|Property|Returns the total number of results found on the search.|
74+
|[`index`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/searchResults/#index/)|Property|Returns the index of selected search result. You can change the value for this property to move the selection.|
75+
|[`replaceAll()`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/searchResults/#replaceall/)|Method|Replaces all the occurrences with specified text.|
76+
|[`clear()`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/searchResults/#clear/)|Method|Clears the search result.|
7777

7878
### Replace all the occurrences
7979

80-
Using [`replaceAll`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/searchResults#replaceall/), you can replace all the occurrences with specified text.
80+
Using [`replaceAll`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/searchResults/#replaceall/), you can replace all the occurrences with specified text.
8181

8282
The following example code illustrates how to use replace All in Document editor.
8383

Document-Processing/Word/Word-Processor/angular/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ cd my-app
8686

8787
## Adding Syncfusion<sup style="font-size:70%">&reg;</sup> Document Editor package
8888

89-
All the available Essential<sup style="font-size:70%">&reg;</sup> JS 2 packages are published in [`npmjs.com`](https://www.npmjs.com/~syncfusionorg) registry.
89+
All the available Essential<sup style="font-size:70%">&reg;</sup> JS 2 packages are published in [`npmJs.com`](https://www.npmjs.com/~syncfusionorg) registry.
9090

9191
To install Document Editor component, use the following command.
9292

Document-Processing/Word/Word-Processor/angular/how-to/add-save-button-in-toolbar.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ domainurl: ##DomainURL##
1212

1313
## To add a save button to the existing toolbar in DocumentEditorContainer
1414

15-
DocumentEditorContainer allows you to add a new button to the existing items in a toolbar using [`CustomToolbarItemModel`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/customToolbarItemModel/) and with existing items in [`toolbarItems`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/-container#toolbaritems) property. Newly added item click action can be defined in [`toolbarClick`](https://ej2.syncfusion.com/angular/documentation/api/toolbar/clickEventArgs/).
15+
DocumentEditorContainer allows you to add a new button to the existing items in a toolbar using [`CustomToolbarItemModel`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/customToolbarItemModel/) and with existing items in [`toolbarItems`](https://ej2.syncfusion.com/angular/documentation/api/document-editor-container/#toolbaritems) property. Newly added item click action can be defined in [`toolbarClick`](https://ej2.syncfusion.com/angular/documentation/api/toolbar/clickEventArgs/).
1616

1717
```typescript
1818
import { Component, OnInit, ViewChild } from '@angular/core';

Document-Processing/Word/Word-Processor/angular/how-to/change-document-view.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export class AppComponent {
5858
5959
## How to change the document view in DocumentEditorContainer component
6060

61-
DocumentEditorContainer component allows you to change the view to web layout and print using the [`layoutType`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/-container#layouttype) property with the supported [`LayoutType`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/layoutType/).
61+
DocumentEditorContainer component allows you to change the view to web layout and print using the [`layoutType`](https://ej2.syncfusion.com/angular/documentation/api/document-editor-container/#layouttype) property with the supported [`LayoutType`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/layoutType/).
6262

6363
```typescript
6464
/**

Document-Processing/Word/Word-Processor/angular/how-to/change-the-default-search-highlight-color.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ domainurl: ##DomainURL##
1010

1111
# Change Search Highlight Color in Angular Document Editor
1212

13-
Document editor provides an options to change the default search highlight color using [`searchHighlightColor`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/documentEditorSettingsModel#searchhighlightcolor) in Document editor settings. The highlight color which is given in [`documentEditorSettings`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/-container#documenteditorsettings) will be highlighted on the searched text. By default, search highlight color is `yellow`.
13+
Document editor provides an options to change the default search highlight color using [`searchHighlightColor`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/documentEditorSettingsModel/#searchhighlightcolor) in Document editor settings. The highlight color which is given in [`documentEditorSettings`](https://ej2.syncfusion.com/angular/documentation/api/document-editor-container/#documenteditorsettings) will be highlighted on the searched text. By default, search highlight color is `yellow`.
1414

1515
Similarly, you can use [`documentEditorSettings`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/#documenteditorsettings) property for DocumentEditor also.
1616

0 commit comments

Comments
 (0)