Skip to content

Commit 6750d52

Browse files
Merge pull request #1377 from syncfusion-content/Ej2-979841-PlatformName
980280: Changed Platform_Name to respective platforms
2 parents 3f7508b + f766040 commit 6750d52

File tree

2,682 files changed

+2042
-2477
lines changed

Some content is hidden

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

2,682 files changed

+2042
-2477
lines changed

Document-Processing-toc.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2315,6 +2315,7 @@
23152315
<li><a href="/document-processing/word/word-processor/asp-net-core/table-format">Working with Table Formatting</a></li>
23162316
<li><a href="/document-processing/word/word-processor/asp-net-core/section-format">Working with Section Formatting</a></li>
23172317
<li><a href="/document-processing/word/word-processor/asp-net-core/comments">Comments</a></li>
2318+
<li><a href="/document-processing/word/word-processor/asp-net-core/track-changes">Track Changes</a></li>
23182319
<li><a href="/document-processing/word/word-processor/asp-net-core/fields">Fields</a></li>
23192320
<li><a href="/document-processing/word/word-processor/asp-net-core/form-fields">Form fields</a></li>
23202321
<li><a href="/document-processing/word/word-processor/asp-net-core/clipboard">Clipboard</a></li>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ The Document editor component's accessibility levels are ensured through an [acc
4646

4747
The accessibility compliance of the Document editor component is shown in the following sample. Open the [sample](https://ej2.syncfusion.com/accessibility/wordprocessor.html) in a new window to evaluate the accessibility of the Document editor component with accessibility tools.
4848

49-
{% previewsample "page.domainurl/samples/document-editor/accessibility-cs1" %}
49+
{% previewsample "/document-processing/samples/document-editor/angular/accessibility-cs1" %}
5050

5151
## See also
5252

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ Document Editor provides built-in dialog to add, delete, and navigate bookmarks
1919
2020
## Add bookmark
2121

22-
Using [`insertBookmark`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/editor#insertbookmark) method, Bookmark can be added to the selected text.
22+
Using [`insertBookmark`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/editor/#insertbookmark) method, Bookmark can be added to the selected text.
2323

2424
```csharp
2525
this.container.documentEditor.editor.insertBookmark("Bookmark1");
2626
```
2727

2828
## Select Bookmark
2929

30-
You can select the bookmark in the document using [`selectBookmark`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/selection#selectbookmark) method by providing Bookmark name to select as shown in the following code snippet.
30+
You can select the bookmark in the document using [`selectBookmark`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/selection/#selectbookmark) method by providing Bookmark name to select as shown in the following code snippet.
3131

3232
```csharp
3333
container.documentEditor.selection.selectBookmark("Bookmark1", true);
@@ -36,15 +36,15 @@ container.documentEditor.selection.selectBookmark("Bookmark1", true);
3636
3737
## Delete Bookmark
3838

39-
You can delete bookmark in the document using [`deleteBookmark`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/editor#deletebookmark) method as shown in the following code snippet.
39+
You can delete bookmark in the document using [`deleteBookmark`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/editor/#deletebookmark/) method as shown in the following code snippet.
4040

4141
```csharp
4242
this.container.documentEditor.editor.deleteBookmark("Bookmark1");
4343
```
4444

4545
## Get Bookmark from document
4646

47-
You can get all the bookmarks in the document using [`getBookmarks`](https://ej2.syncfusion.com/angular/documentation/api/document-editor#getbookmarks) method as shown in the following code snippet.
47+
You can get all the bookmarks in the document using [`getBookmarks`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/#getbookmarks/) method as shown in the following code snippet.
4848

4949
```csharp
5050
this.container.documentEditor.selection.getBookmarks(false);
@@ -54,7 +54,7 @@ this.container.documentEditor.selection.getBookmarks(false);
5454
5555
## Get Bookmark from selection
5656

57-
You can get bookmarks in current selection in the document using [`getBookmarks`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/selection#getbookmarks) method as shown in the following code snippet.
57+
You can get bookmarks in current selection in the document using [`getBookmarks`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/selection/#getbookmarks/) method as shown in the following code snippet.
5858

5959
```csharp
6060
this.container.documentEditor.selection.getBookmarks(false);
@@ -92,15 +92,15 @@ The following example shows how to open bookmark dialog in document editor.
9292

9393
{% tabs %}
9494
{% highlight ts tabtitle="app.component.ts" %}
95-
{% include code-snippet/document-editor/angular/document-editor/bookmark-cs1/src/app.component.ts %}
95+
{% include code-snippet/document-editor/angular/bookmark-cs1/src/app.component.ts %}
9696
{% endhighlight %}
9797

9898
{% highlight ts tabtitle="main.ts" %}
99-
{% include code-snippet/document-editor/angular/document-editor/bookmark-cs1/src/main.ts %}
99+
{% include code-snippet/document-editor/angular/bookmark-cs1/src/main.ts %}
100100
{% endhighlight %}
101101
{% endtabs %}
102102

103-
{% previewsample "page.domainurl/samples/document-editor/bookmark-cs1" %}
103+
{% previewsample "/document-processing/samples/document-editor/angular/bookmark-cs1" %}
104104

105105

106106
## See Also

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ The following example shows chart preservation in Document Editor.
1616

1717
{% tabs %}
1818
{% highlight ts tabtitle="app.component.ts" %}
19-
{% include code-snippet/document-editor/angular/document-editor/import-cs1/src/app.component.ts %}
19+
{% include code-snippet/document-editor/angular/import-cs1/src/app.component.ts %}
2020
{% endhighlight %}
2121

2222
{% highlight ts tabtitle="main.ts" %}
23-
{% include code-snippet/document-editor/angular/document-editor/import-cs1/src/main.ts %}
23+
{% include code-snippet/document-editor/angular/import-cs1/src/main.ts %}
2424
{% endhighlight %}
2525
{% endtabs %}
2626

27-
{% previewsample "page.domainurl/samples/document-editor/import-cs1" %}
27+
{% previewsample "/document-processing/samples/document-editor/angular/import-cs1" %}
2828

2929
## Supported Chart Types
3030

Document-Processing/Word/Word-Processor/angular/collaborative-editing/overview.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ title: Collaborative Editing in Angular Document editor control | Syncfusion
44
description: Learn about collaborative editing in Syncfusion Angular Document editor control of Syncfusion Essential JS 2 and more.
55
platform: document-processing
66
control: Collaborative Editing
7-
publishingplatform: ##Platform_Name##
87
documentation: ug
98
domainurl: ##DomainURL##
109
---

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
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 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
7-
publishingplatform: ##Platform_Name##
87
documentation: ug
98
domainurl: ##DomainURL##
109
---

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: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ this.documentEditor.editor.insertComment('Test comment');
2222

2323
## Add a New Comment with Date, Author, and Status
2424

25-
Comments can be inserted into the selected text with a specified date, author, and status [`insertComment`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/editor#insertcomment).
25+
Comments can be inserted into the selected text with a specified date, author, and status [`insertComment`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/editor/#insertcomment).
2626

2727
```typescript
2828
// In this example, a comment with the text "Hello world"
@@ -46,7 +46,7 @@ this.documentEditor.editor.insertComment('Hello world', commentProperties);
4646

4747
## Add a Reply Comment with Date, Author, and Status
4848

49-
Reply comments can be inserted into the parent comment with a specified date, author using [`insertReplyComment`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/editor#insertreplycomment).
49+
Reply comments can be inserted into the parent comment with a specified date, author using [`insertReplyComment`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/editor/#insertreplycomment).
5050

5151
```typescript
5252
// In this example, a comment with the text "Hello world"
@@ -72,7 +72,7 @@ this.documentEditor.editor.insertReplyComment(comment.id, 'Hello world', comment
7272

7373
## Get Comments
7474

75-
Document Editor allows to get the comments along with its reply and comment properties using [`getComments`](https://ej2.syncfusion.com/angular/documentation/api/document-editor#getcomments).
75+
Document Editor allows to get the comments along with its reply and comment properties using [`getComments`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/#getcomments).
7676

7777
```typescript
7878
//Get Comments in the document along with the properties author, date, status.
@@ -93,7 +93,7 @@ this.documentEditor.selection.navigatePreviousComment();
9393

9494
## Delete comment
9595

96-
Current comment can be deleted using [`deleteComment`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/editor#deletecomment).
96+
Current comment can be deleted using [`deleteComment`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/editor/#deletecomment).
9797

9898
```typescript
9999
//Delete the current selected comment.
@@ -121,7 +121,7 @@ this.documentEditor.editor.deleteAllComments();
121121

122122
Document Editor provides support for protecting the document with `CommentsOnly` protection. In this protection, user allowed to add or edit comments alone in the document.
123123

124-
Document editor provides an option to protect and unprotect document using [`enforceProtection`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/editor#enforceprotection) and [`stopProtection`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/editor#stopprotection) API.
124+
Document editor provides an option to protect and unprotect document using [`enforceProtection`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/editor/#enforceprotection) and [`stopProtection`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/editor/#stopprotection) API.
125125

126126
The following example code illustrates how to enforce and stop protection in Document editor container.
127127

@@ -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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ BlockContentControl: Among paragraphs and tables, as a child of a Body, HeaderFo
2828

2929
## Insert content control
3030

31-
Content control can be inserted using [`insertContentControl`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/editor#insertcontentcontrol) method in editor module.
31+
Content control can be inserted using [`insertContentControl`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/editor/#insertcontentcontrol) method in editor module.
3232

3333
{% highlight ts %}
3434
//Insert Rich Text Content Control
@@ -70,7 +70,7 @@ this.container.documentEditor.editor.insertContentControl('Picture', 'data:image
7070

7171
## Import content control properties
7272

73-
Content control properties can be set using the [`ContentControlInfo`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/contentControlInfo/) and import it using [`importContentControlData`](https://ej2.syncfusion.com/angular/documentation/api/document-editor#importcontentcontroldata)
73+
Content control properties can be set using the [`ContentControlInfo`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/contentControlInfo/) and import it using [`importContentControlData`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/#importcontentcontroldata)
7474

7575
{% highlight ts %}
7676
let data: ContentControlInfo[] = [];
@@ -81,15 +81,15 @@ this.container.documentEditor.importContentControlData(data);
8181

8282
## Export content control properties
8383

84-
Content control properties can be exported using the [`exportContentControlData`](https://ej2.syncfusion.com/angular/documentation/api/document-editor#exportcontentcontroldata)
84+
Content control properties can be exported using the [`exportContentControlData`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/#exportcontentcontroldata)
8585

8686
{% highlight ts %}
8787
let contentControlInfos: ContentControlInfo[] = this.container.documentEditor.exportContentControlData();
8888
{% endhighlight %}
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/dialog.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ Refer to the following example.
2020

2121
{% tabs %}
2222
{% highlight ts tabtitle="app.component.ts" %}
23-
{% include code-snippet/document-editor/angular/document-editor/dialog-cs1/src/app.component.ts %}
23+
{% include code-snippet/document-editor/angular/dialog-cs1/src/app.component.ts %}
2424
{% endhighlight %}
2525

2626
{% highlight ts tabtitle="main.ts" %}
27-
{% include code-snippet/document-editor/angular/document-editor/dialog-cs1/src/main.ts %}
27+
{% include code-snippet/document-editor/angular/dialog-cs1/src/main.ts %}
2828
{% endhighlight %}
2929
{% endtabs %}
3030

31-
{% previewsample "page.domainurl/samples/document-editor/dialog-cs1" %}
31+
{% previewsample "/document-processing/samples/document-editor/angular/dialog-cs1" %}
3232

3333
## Paragraph dialog
3434

@@ -38,15 +38,15 @@ To open this dialog, refer to the following example.
3838

3939
{% tabs %}
4040
{% highlight ts tabtitle="app.component.ts" %}
41-
{% include code-snippet/document-editor/angular/document-editor/dialog-cs2/src/app.component.ts %}
41+
{% include code-snippet/document-editor/angular/dialog-cs2/src/app.component.ts %}
4242
{% endhighlight %}
4343

4444
{% highlight ts tabtitle="main.ts" %}
45-
{% include code-snippet/document-editor/angular/document-editor/dialog-cs2/src/main.ts %}
45+
{% include code-snippet/document-editor/angular/dialog-cs2/src/main.ts %}
4646
{% endhighlight %}
4747
{% endtabs %}
4848

49-
{% previewsample "page.domainurl/samples/document-editor/dialog-cs2" %}
49+
{% previewsample "/document-processing/samples/document-editor/angular/dialog-cs2" %}
5050

5151
## Table dialog
5252

@@ -56,15 +56,15 @@ To open this dialog, refer to the following example.
5656

5757
{% tabs %}
5858
{% highlight ts tabtitle="app.component.ts" %}
59-
{% include code-snippet/document-editor/angular/document-editor/dialog-cs3/src/app.component.ts %}
59+
{% include code-snippet/document-editor/angular/dialog-cs3/src/app.component.ts %}
6060
{% endhighlight %}
6161

6262
{% highlight ts tabtitle="main.ts" %}
63-
{% include code-snippet/document-editor/angular/document-editor/dialog-cs3/src/main.ts %}
63+
{% include code-snippet/document-editor/angular/dialog-cs3/src/main.ts %}
6464
{% endhighlight %}
6565
{% endtabs %}
6666

67-
{% previewsample "page.domainurl/samples/document-editor/dialog-cs3" %}
67+
{% previewsample "/document-processing/samples/document-editor/angular/dialog-cs3" %}
6868

6969
## Bookmark dialog
7070

@@ -78,15 +78,15 @@ To open this dialog, refer to the following example.
7878

7979
{% tabs %}
8080
{% highlight ts tabtitle="app.component.ts" %}
81-
{% include code-snippet/document-editor/angular/document-editor/dialog-cs4/src/app.component.ts %}
81+
{% include code-snippet/document-editor/angular/dialog-cs4/src/app.component.ts %}
8282
{% endhighlight %}
8383

8484
{% highlight ts tabtitle="main.ts" %}
85-
{% include code-snippet/document-editor/angular/document-editor/dialog-cs4/src/main.ts %}
85+
{% include code-snippet/document-editor/angular/dialog-cs4/src/main.ts %}
8686
{% endhighlight %}
8787
{% endtabs %}
8888

89-
{% previewsample "page.domainurl/samples/document-editor/dialog-cs4" %}
89+
{% previewsample "/document-processing/samples/document-editor/angular/dialog-cs4" %}
9090

9191
## Hyperlink dialog
9292

@@ -96,15 +96,15 @@ To open this dialog, refer to the following example.
9696

9797
{% tabs %}
9898
{% highlight ts tabtitle="app.component.ts" %}
99-
{% include code-snippet/document-editor/angular/document-editor/dialog-cs5/src/app.component.ts %}
99+
{% include code-snippet/document-editor/angular/dialog-cs5/src/app.component.ts %}
100100
{% endhighlight %}
101101

102102
{% highlight ts tabtitle="main.ts" %}
103-
{% include code-snippet/document-editor/angular/document-editor/dialog-cs5/src/main.ts %}
103+
{% include code-snippet/document-editor/angular/dialog-cs5/src/main.ts %}
104104
{% endhighlight %}
105105
{% endtabs %}
106106

107-
{% previewsample "page.domainurl/samples/document-editor/dialog-cs5" %}
107+
{% previewsample "/document-processing/samples/document-editor/angular/dialog-cs5" %}
108108

109109
## Table of contents dialog
110110

@@ -486,15 +486,15 @@ To open this dialog, refer to the following example.
486486

487487
{% tabs %}
488488
{% highlight ts tabtitle="app.component.ts" %}
489-
{% include code-snippet/document-editor/angular/document-editor/dialog-cs6/src/app.component.ts %}
489+
{% include code-snippet/document-editor/angular/dialog-cs6/src/app.component.ts %}
490490
{% endhighlight %}
491491

492492
{% highlight ts tabtitle="main.ts" %}
493-
{% include code-snippet/document-editor/angular/document-editor/dialog-cs6/src/main.ts %}
493+
{% include code-snippet/document-editor/angular/dialog-cs6/src/main.ts %}
494494
{% endhighlight %}
495495
{% endtabs %}
496496

497-
{% previewsample "page.domainurl/samples/document-editor/dialog-cs6" %}
497+
{% previewsample "/document-processing/samples/document-editor/angular/dialog-cs6" %}
498498

499499
## See Also
500500

0 commit comments

Comments
 (0)