Skip to content

Commit b75f078

Browse files
committed
983454: resolving CI failure
1 parent 0222e58 commit b75f078

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

Document-Processing/Word/Word-Processor/asp-net-mvc/how-to/export-document-as-pdf.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: post
3-
title: Export PDF Document in ASP.NET MVC Document Editor Component |Syncfusion
3+
title: Export PDF Document in ASP.NET MVC Document Editor |Syncfusion
44
description: Learn here all about export document as PDF in Syncfusion ASP.NET MVC Document Editor component of Syncfusion Essential JS 2 and more.
55
platform: document-processing
66
control: Export Document As PDF

Document-Processing/Word/Word-Processor/javascript-es5/how-to/export-document-as-pdf.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: post
3-
title: Export document as pdf in JavaScript (ES5) Document editor control | Syncfusion
3+
title: Export document as pdf in JavaScript (ES5) DocumentEditor | Syncfusion
44
description: Learn here all about Export document as pdf in Syncfusion JavaScript (ES5) Document editor control of Syncfusion Essential JS 2 and more.
55
platform: document-processing
66
control: Export document as pdf
@@ -14,7 +14,7 @@ In this article, we are going to see how to export the document as PDF format. Y
1414

1515
## Export the document as pdf in client-side
1616

17-
Use [`pdf export component`](https://www.npmjs.com/package/@syncfusion/ej2-pdf-export) in application level to export the document as pdf using [`exportAsImage`](https://ej2.syncfusion.com/javascript/documentation/api/document-editor#exportasimage) API. Here, all pages will be converted to image and inserted as pdf pages(works like print as PDF).
17+
Use [`pdf export component`](https://www.npmjs.com/package/@syncfusion/ej2-pdf-export) in application level to export the document as pdf using [`exportAsImage`](https://ej2.syncfusion.com/javascript/documentation/api/document-editor/#exportasimage) API. Here, all pages will be converted to image and inserted as pdf pages(works like print as PDF).
1818

1919
>Note:
2020
* The Document Editor exports PDFs by converting pages into images on the client side, which may slightly increase file size compared to text-based PDFs.
@@ -74,7 +74,7 @@ With the help of [`Syncfusion DocIO`](https://help.syncfusion.com/file-formats/d
7474

7575
The following way illustrates how to convert the document as PDF:
7676

77-
* Using [`serialize`](https://ej2.syncfusion.com/javascript/documentation/api/document-editor#serialize) API, convert the document as Sfdt and send it to server-side.
77+
* Using [`serialize`](https://ej2.syncfusion.com/javascript/documentation/api/document-editor/#serialize) API, convert the document as Sfdt and send it to server-side.
7878

7979
The following example code illustrates how to convert the document to sfdt and pass it to server-side.
8080

Document-Processing/Word/Word-Processor/javascript-es6/how-to/export-document-as-pdf.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: post
3-
title: Export document as pdf in JavaScript (ES6) Document editor control | Syncfusion
3+
title: Export document as pdf in JavaScript (ES6) DocumentEditor | Syncfusion
44
description: Learn here all about Export document as pdf in Syncfusion JavaScript (ES6) Document editor control of Syncfusion Essential JS 2 and more.
55
platform: document-processing
66
control: Export document as pdf
@@ -14,7 +14,7 @@ In this article, we are going to see how to export the document as PDF format. Y
1414

1515
## Export the document as pdf in client-side
1616

17-
Use [`pdf export component`](https://www.npmjs.com/package/@syncfusion/ej2-pdf-export) in application level to export the document as pdf using [`exportAsImage`](https://ej2.syncfusion.com/documentation/api/document-editor#exportasimage) API. Here, all pages will be converted to image and inserted as pdf pages(works like print as PDF).
17+
Use [`pdf export component`](https://www.npmjs.com/package/@syncfusion/ej2-pdf-export) in application level to export the document as pdf using [`exportAsImage`](https://ej2.syncfusion.com/documentation/api/document-editor/#exportasimage) API. Here, all pages will be converted to image and inserted as pdf pages(works like print as PDF).
1818

1919
>Note:
2020
* The Document Editor exports PDFs by converting pages into images on the client side, which may slightly increase file size compared to text-based PDFs.
@@ -103,7 +103,7 @@ With the help of [`Syncfusion DocIO`](https://help.syncfusion.com/file-formats/d
103103

104104
The following way illustrates how to convert the document as PDF:
105105

106-
* Using [`serialize`](https://ej2.syncfusion.com/documentation/api/document-editor#serialize) API, convert the document as Sfdt and send it to server-side.
106+
* Using [`serialize`](https://ej2.syncfusion.com/documentation/api/document-editor/#serialize) API, convert the document as Sfdt and send it to server-side.
107107

108108
The following example code illustrates how to convert the document to sfdt and pass it to server-side.
109109

Document-Processing/Word/Word-Processor/react/how-to/export-document-as-pdf.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ In this article, we are going to see how to export the document as PDF format. Y
1414

1515
## Export the document as pdf in client-side
1616

17-
Use [`pdf export component`](https://www.npmjs.com/package/@syncfusion/ej2-pdf-export) in application level to export the document as pdf using [`exportAsImage`](https://ej2.syncfusion.com/react/documentation/api/document-editor#exportasimage) API. Here, all pages will be converted to image and inserted as pdf pages(works like print as PDF).
17+
Use [`pdf export component`](https://www.npmjs.com/package/@syncfusion/ej2-pdf-export) in application level to export the document as pdf using [`exportAsImage`](https://ej2.syncfusion.com/react/documentation/api/document-editor/#exportasimage) API. Here, all pages will be converted to image and inserted as pdf pages(works like print as PDF).
1818

1919
>Note:
2020
* The Document Editor exports PDFs by converting pages into images on the client side, which may slightly increase file size compared to text-based PDFs.
@@ -107,7 +107,7 @@ With the help of [`Syncfusion DocIO`](https://help.syncfusion.com/file-formats/d
107107

108108
The following way illustrates how to convert the document as PDF:
109109

110-
* Using [`serialize`](https://ej2.syncfusion.com/react/documentation/api/document-editor#serialize) API, convert the document as Sfdt and send it to server-side.
110+
* Using [`serialize`](https://ej2.syncfusion.com/react/documentation/api/document-editor/#serialize) API, convert the document as Sfdt and send it to server-side.
111111

112112
The following example code illustrates how to convert the document to sfdt and pass it to server-side.
113113

Document-Processing/Word/Word-Processor/vue/how-to/export-document-as-pdf.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ In this article, we are going to see how to export the document as PDF format. Y
1414

1515
## Export the document as pdf in client-side
1616

17-
Use [`pdf export component`](https://www.npmjs.com/package/@syncfusion/ej2-pdf-export) in application level to export the document as pdf using [`exportAsImage`](https://ej2.syncfusion.com/vue/documentation/api/document-editor#exportasimage) API. Here, all pages will be converted to image and inserted as pdf pages(works like print as PDF).
17+
Use [`pdf export component`](https://www.npmjs.com/package/@syncfusion/ej2-pdf-export) in application level to export the document as pdf using [`exportAsImage`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/#exportasimage) API. Here, all pages will be converted to image and inserted as pdf pages(works like print as PDF).
1818

1919
>Note:
2020
* The Document Editor exports PDFs by converting pages into images on the client side, which may slightly increase file size compared to text-based PDFs.
@@ -187,7 +187,7 @@ With the help of [`Syncfusion DocIO`](https://help.syncfusion.com/file-formats/d
187187

188188
The following way illustrates how to convert the document as PDF:
189189

190-
* Using [`serialize`](https://ej2.syncfusion.com/vue/documentation/api/document-editor#serialize) API, convert the document as Sfdt and send it to server-side.
190+
* Using [`serialize`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/#serialize) API, convert the document as Sfdt and send it to server-side.
191191

192192
The following example code illustrates how to convert the document to sfdt and pass it to server-side.
193193

0 commit comments

Comments
 (0)