Skip to content

Commit 31ccdc9

Browse files
committed
983454: CI failure resolved
1 parent a31f506 commit 31ccdc9

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ domainurl: ##DomainURL##
1010

1111
# Export document as pdf in JavaScript (ES5) Document editor control
1212

13-
In this article, we are going to see how to export the document as Pdf format. You can export the document as Pdf in following ways:
13+
In this article, we are going to see how to export the document as PDF format. You can export the document as PDF in following ways:
1414

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

@@ -70,9 +70,9 @@ The following example code illustrates how to export the document as pdf in clie
7070

7171
## Export document as pdf in server-side using Syncfusion<sup style="font-size:70%">&reg;</sup> DocIO
7272

73-
With the help of [`Synfusion DocIO`](https://help.syncfusion.com/file-formats/docio/word-to-pdf), you can export the document as Pdf in server-side. Here, you can search the text.
73+
With the help of [`Syncfusion DocIO`](https://help.syncfusion.com/file-formats/docio/word-to-pdf), you can export the document as PDF in server-side. Here, you can search the text.
7474

75-
The following way illustrates how to convert the document as Pdf:
75+
The following way illustrates how to convert the document as PDF:
7676

7777
* 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

@@ -106,7 +106,7 @@ document.getElementById('export').addEventListener('click', function () {
106106
> 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.
107107
108108
* Using Save API in server-side, you can convert the sfdt to stream.
109-
* Finally, convert the stream to Pdf using [`Syncfusion.DocIORenderer.Net.Core`](https://www.nuget.org/packages/Syncfusion.DocIORenderer.Net.Core) library.
109+
* Finally, convert the stream to PDF using [`Syncfusion.DocIORenderer.Net.Core`](https://www.nuget.org/packages/Syncfusion.DocIORenderer.Net.Core) library.
110110

111111
The following example code illustrates how to process the sfdt in server-side.
112112

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ domainurl: ##DomainURL##
1010

1111
# Export document as pdf in JavaScript (ES6) Document editor control
1212

13-
In this article, we are going to see how to export the document as Pdf format. You can export the document as Pdf in following ways:
13+
In this article, we are going to see how to export the document as PDF format. You can export the document as PDF in following ways:
1414

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

@@ -99,9 +99,9 @@ document.getElementById('export').addEventListener('click', function () {
9999

100100
## Export document as pdf in server-side using Syncfusion<sup style="font-size:70%">&reg;</sup> DocIO
101101

102-
With the help of [`Synfusion DocIO`](https://help.syncfusion.com/file-formats/docio/word-to-pdf), you can export the document as Pdf in server-side. Here, you can search the text.
102+
With the help of [`Syncfusion DocIO`](https://help.syncfusion.com/file-formats/docio/word-to-pdf), you can export the document as PDF in server-side. Here, you can search the text.
103103

104-
The following way illustrates how to convert the document as Pdf:
104+
The following way illustrates how to convert the document as PDF:
105105

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

@@ -135,7 +135,7 @@ document.getElementById('export').addEventListener('click', function () {
135135
> 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.
136136
137137
* Using Save API in server-side, you can convert the sfdt to stream.
138-
* Finally, convert the stream to Pdf using [`Syncfusion.DocIORenderer.Net.Core`](https://www.nuget.org/packages/Syncfusion.DocIORenderer.Net.Core) library.
138+
* Finally, convert the stream to PDF using [`Syncfusion.DocIORenderer.Net.Core`](https://www.nuget.org/packages/Syncfusion.DocIORenderer.Net.Core) library.
139139

140140
The following example code illustrates how to process the sfdt in server-side.
141141

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ domainurl: ##DomainURL##
1010

1111
# Export document as pdf in React Document editor component
1212

13-
In this article, we are going to see how to export the document as Pdf format. You can export the document as Pdf in following ways:
13+
In this article, we are going to see how to export the document as PDF format. You can export the document as PDF in following ways:
1414

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

@@ -103,9 +103,9 @@ ReactDOM.render(<App />, document.getElementById('sample'));
103103
104104
## Export document as pdf in server-side using Syncfusion<sup style="font-size:70%">&reg;</sup> DocIO
105105

106-
With the help of [`Synfusion DocIO`](https://help.syncfusion.com/file-formats/docio/word-to-pdf), you can export the document as Pdf in server-side. Here, you can search the text.
106+
With the help of [`Syncfusion DocIO`](https://help.syncfusion.com/file-formats/docio/word-to-pdf), you can export the document as PDF in server-side. Here, you can search the text.
107107

108-
The following way illustrates how to convert the document as Pdf:
108+
The following way illustrates how to convert the document as PDF:
109109

110110
* 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

@@ -153,7 +153,7 @@ ReactDOM.render(<App />, document.getElementById('sample'));
153153
> 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.
154154
155155
* Using Save API in server-side, you can convert the sfdt to stream.
156-
* Finally, convert the stream to Pdf using [`Syncfusion.DocIORenderer.Net.Core`](https://www.nuget.org/packages/Syncfusion.DocIORenderer.Net.Core) library.
156+
* Finally, convert the stream to PDF using [`Syncfusion.DocIORenderer.Net.Core`](https://www.nuget.org/packages/Syncfusion.DocIORenderer.Net.Core) library.
157157

158158
The following example code illustrates how to process the sfdt in server-side.
159159

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ domainurl: ##DomainURL##
1010

1111
# Export document as pdf in Vue Document editor component
1212

13-
In this article, we are going to see how to export the document as Pdf format. You can export the document as Pdf in following ways:
13+
In this article, we are going to see how to export the document as PDF format. You can export the document as PDF in following ways:
1414

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

@@ -183,9 +183,9 @@ export default {
183183
184184
## Export document as pdf in server-side using Syncfusion<sup style="font-size:70%">&reg;</sup> DocIO
185185

186-
With the help of [`Synfusion DocIO`](https://help.syncfusion.com/file-formats/docio/word-to-pdf), you can export the document as Pdf in server-side. Here, you can search the text.
186+
With the help of [`Syncfusion DocIO`](https://help.syncfusion.com/file-formats/docio/word-to-pdf), you can export the document as PDF in server-side. Here, you can search the text.
187187

188-
The following way illustrates how to convert the document as Pdf:
188+
The following way illustrates how to convert the document as PDF:
189189

190190
* 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

@@ -273,7 +273,7 @@ export default {
273273
> 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.
274274
275275
* Using Save API in server-side, you can convert the sfdt to stream.
276-
* Finally, convert the stream to Pdf using [`Syncfusion.DocIORenderer.Net.Core`](https://www.nuget.org/packages/Syncfusion.DocIORenderer.Net.Core) library.
276+
* Finally, convert the stream to PDF using [`Syncfusion.DocIORenderer.Net.Core`](https://www.nuget.org/packages/Syncfusion.DocIORenderer.Net.Core) library.
277277

278278
The following example code illustrates how to process the sfdt in server-side.
279279

0 commit comments

Comments
 (0)