Skip to content

Commit f081736

Browse files
committed
979841: Moved document-editor folder, moved samples for DE in common samples folder, added track changes in TOC for ASP.NET Core
1 parent b904e33 commit f081736

File tree

2,365 files changed

+942
-941
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,365 files changed

+942
-941
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 "/document-processing/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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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 "/document-processing/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 "/document-processing/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/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 "/document-processing/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 "/document-processing/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 "/document-processing/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 "/document-processing/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 "/document-processing/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 "/document-processing/samples/document-editor/dialog-cs6" %}
497+
{% previewsample "/document-processing/samples/document-editor/angular/dialog-cs6" %}
498498

499499
## See Also
500500

Document-Processing/Word/Word-Processor/angular/document-management.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,15 @@ The following code shows Restrict Editing Pane. To unprotect the document, use p
5454

5555
{% tabs %}
5656
{% highlight ts tabtitle="app.component.ts" %}
57-
{% include code-snippet/document-editor/angular/document-editor/document-editor-container-cs1/src/app.component.ts %}
57+
{% include code-snippet/document-editor/angular/document-editor-container-cs1/src/app.component.ts %}
5858
{% endhighlight %}
5959

6060
{% highlight ts tabtitle="main.ts" %}
61-
{% include code-snippet/document-editor/angular/document-editor/document-editor-container-cs1/src/main.ts %}
61+
{% include code-snippet/document-editor/angular/document-editor-container-cs1/src/main.ts %}
6262
{% endhighlight %}
6363
{% endtabs %}
6464

65-
{% previewsample "/document-processing/samples/document-editor/document-editor-container-cs1" %}
65+
{% previewsample "/document-processing/samples/document-editor/angular/document-editor-container-cs1" %}
6666

6767
> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property.
6868

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

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ The following example shows how to export documents in document editor as Syncfu
2525

2626
{% tabs %}
2727
{% highlight ts tabtitle="app.component.ts" %}
28-
{% include code-snippet/document-editor/angular/document-editor/export-cs1/src/app.component.ts %}
28+
{% include code-snippet/document-editor/angular/export-cs1/src/app.component.ts %}
2929
{% endhighlight %}
3030

3131
{% highlight ts tabtitle="main.ts" %}
32-
{% include code-snippet/document-editor/angular/document-editor/export-cs1/src/main.ts %}
32+
{% include code-snippet/document-editor/angular/export-cs1/src/main.ts %}
3333
{% endhighlight %}
3434
{% endtabs %}
3535

36-
{% previewsample "/document-processing/samples/document-editor/export-cs1" %}
36+
{% previewsample "/document-processing/samples/document-editor/angular/export-cs1" %}
3737

3838
## Word export
3939

@@ -43,15 +43,15 @@ The following example shows how to export the document as Word document (.docx).
4343
4444
{% tabs %}
4545
{% highlight ts tabtitle="app.component.ts" %}
46-
{% include code-snippet/document-editor/angular/document-editor/export-cs2/src/app.component.ts %}
46+
{% include code-snippet/document-editor/angular/export-cs2/src/app.component.ts %}
4747
{% endhighlight %}
4848

4949
{% highlight ts tabtitle="main.ts" %}
50-
{% include code-snippet/document-editor/angular/document-editor/export-cs2/src/main.ts %}
50+
{% include code-snippet/document-editor/angular/export-cs2/src/main.ts %}
5151
{% endhighlight %}
5252
{% endtabs %}
5353

54-
{% previewsample "/document-processing/samples/document-editor/export-cs2" %}
54+
{% previewsample "/document-processing/samples/document-editor/angular/export-cs2" %}
5555

5656
## Template export
5757

@@ -61,31 +61,31 @@ The following example shows how to export the document as Word Template (.dotx).
6161
6262
{% tabs %}
6363
{% highlight ts tabtitle="app.component.ts" %}
64-
{% include code-snippet/document-editor/angular/document-editor/export-cs4/src/app.component.ts %}
64+
{% include code-snippet/document-editor/angular/export-cs4/src/app.component.ts %}
6565
{% endhighlight %}
6666

6767
{% highlight ts tabtitle="main.ts" %}
68-
{% include code-snippet/document-editor/angular/document-editor/export-cs4/src/main.ts %}
68+
{% include code-snippet/document-editor/angular/export-cs4/src/main.ts %}
6969
{% endhighlight %}
7070
{% endtabs %}
7171

72-
{% previewsample "/document-processing/samples/document-editor/export-cs4" %}
72+
{% previewsample "/document-processing/samples/document-editor/angular/export-cs4" %}
7373

7474
## Text export
7575

7676
The following example shows how to export document as text document (.txt).
7777

7878
{% tabs %}
7979
{% highlight ts tabtitle="app.component.ts" %}
80-
{% include code-snippet/document-editor/angular/document-editor/export-cs3/src/app.component.ts %}
80+
{% include code-snippet/document-editor/angular/export-cs3/src/app.component.ts %}
8181
{% endhighlight %}
8282

8383
{% highlight ts tabtitle="main.ts" %}
84-
{% include code-snippet/document-editor/angular/document-editor/export-cs3/src/main.ts %}
84+
{% include code-snippet/document-editor/angular/export-cs3/src/main.ts %}
8585
{% endhighlight %}
8686
{% endtabs %}
8787

88-
{% previewsample "/document-processing/samples/document-editor/export-cs3" %}
88+
{% previewsample "/document-processing/samples/document-editor/angular/export-cs3" %}
8989

9090
## Export as blob
9191

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ This provides the options to search for a portion of text in the document. After
1818

1919
{% tabs %}
2020
{% highlight ts tabtitle="app.component.ts" %}
21-
{% include code-snippet/document-editor/angular/document-editor/find-replace-cs1/src/app.component.ts %}
21+
{% include code-snippet/document-editor/angular/find-replace-cs1/src/app.component.ts %}
2222
{% endhighlight %}
2323

2424
{% highlight ts tabtitle="main.ts" %}
25-
{% include code-snippet/document-editor/angular/document-editor/find-replace-cs1/src/main.ts %}
25+
{% include code-snippet/document-editor/angular/find-replace-cs1/src/main.ts %}
2626
{% endhighlight %}
2727
{% endtabs %}
2828

29-
{% previewsample "/document-processing/samples/document-editor/find-replace-cs1" %}
29+
{% previewsample "/document-processing/samples/document-editor/angular/find-replace-cs1" %}
3030

3131
You can close the options pane by pressing `Esc` key.
3232

@@ -154,12 +154,12 @@ Using the exposed APIs, you can customize the find and replace functionality in
154154

155155
{% tabs %}
156156
{% highlight ts tabtitle="app.component.ts" %}
157-
{% include code-snippet/document-editor/angular/document-editor/find-replace-cs2/src/app.component.ts %}
157+
{% include code-snippet/document-editor/angular/find-replace-cs2/src/app.component.ts %}
158158
{% endhighlight %}
159159

160160
{% highlight ts tabtitle="main.ts" %}
161-
{% include code-snippet/document-editor/angular/document-editor/find-replace-cs2/src/main.ts %}
161+
{% include code-snippet/document-editor/angular/find-replace-cs2/src/main.ts %}
162162
{% endhighlight %}
163163
{% endtabs %}
164164

165-
{% previewsample "/document-processing/samples/document-editor/find-replace-cs2" %}
165+
{% previewsample "/document-processing/samples/document-editor/angular/find-replace-cs2" %}

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -165,15 +165,15 @@ DocumentEditorContainer output will be displayed as follows.
165165

166166
{% tabs %}
167167
{% highlight ts tabtitle="app.component.ts" %}
168-
{% include code-snippet/document-editor/angular/document-editor/document-editor-container-cs2/src/app.component.ts %}
168+
{% include code-snippet/document-editor/angular/document-editor-container-cs2/src/app.component.ts %}
169169
{% endhighlight %}
170170

171171
{% highlight ts tabtitle="main.ts" %}
172-
{% include code-snippet/document-editor/angular/document-editor/document-editor-container-cs2/src/main.ts %}
172+
{% include code-snippet/document-editor/angular/document-editor-container-cs2/src/main.ts %}
173173
{% endhighlight %}
174174
{% endtabs %}
175175

176-
{% previewsample "/document-processing/samples/document-editor/document-editor-container-cs2" %}
176+
{% previewsample "/document-processing/samples/document-editor/angular/document-editor-container-cs2" %}
177177

178178
> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property.
179179
@@ -223,15 +223,15 @@ Output will be displayed as follows.
223223

224224
{% tabs %}
225225
{% highlight ts tabtitle="app.component.ts" %}
226-
{% include code-snippet/document-editor/angular/document-editor/getting-started-cs1/src/app.component.ts %}
226+
{% include code-snippet/document-editor/angular/getting-started-cs1/src/app.component.ts %}
227227
{% endhighlight %}
228228

229229
{% highlight ts tabtitle="main.ts" %}
230-
{% include code-snippet/document-editor/angular/document-editor/getting-started-cs1/src/main.ts %}
230+
{% include code-snippet/document-editor/angular/getting-started-cs1/src/main.ts %}
231231
{% endhighlight %}
232232
{% endtabs %}
233233

234-
{% previewsample "/document-processing/samples/document-editor/getting-started-cs1" %}
234+
{% previewsample "/document-processing/samples/document-editor/angular/getting-started-cs1" %}
235235

236236
> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property.
237237

Document-Processing/Word/Word-Processor/angular/how-to/customize-context-menu.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,15 +206,15 @@ The following is the output of custom context menu with customization.
206206

207207
{% tabs %}
208208
{% highlight ts tabtitle="app.component.ts" %}
209-
{% include code-snippet/document-editor/angular/document-editor/customize-context-menu-cs1/src/app.component.ts %}
209+
{% include code-snippet/document-editor/angular/customize-context-menu-cs1/src/app.component.ts %}
210210
{% endhighlight %}
211211

212212
{% highlight ts tabtitle="main.ts" %}
213-
{% include code-snippet/document-editor/angular/document-editor/customize-context-menu-cs1/src/main.ts %}
213+
{% include code-snippet/document-editor/angular/customize-context-menu-cs1/src/main.ts %}
214214
{% endhighlight %}
215215
{% endtabs %}
216216

217-
{% previewsample "/document-processing/samples/document-editor/customize-context-menu-cs1" %}
217+
{% previewsample "/document-processing/samples/document-editor/angular/customize-context-menu-cs1" %}
218218

219219
> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property.
220220

0 commit comments

Comments
 (0)