Skip to content

Commit d73cc4e

Browse files
Merge pull request #2580 from syncfusion-content/ES-1019486-Update-conversion-page-hotfix
Documentation(1019486): Updated Working with Document Conversion page in DocIO - Hotfix
2 parents b7e0b2f + 0ca635d commit d73cc4e

3 files changed

Lines changed: 63 additions & 50 deletions

File tree

Document-Processing/Word/Word-Library/NET/Conversion.md

Lines changed: 37 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Word document conversion in C# | DocIO | Syncfusion
3-
description: This section illustrates how to convert a Word document into other supported file formats using Syncfusion<sup>&reg;</sup> Word library (Essential<sup>&reg;</sup> DocIO)
3+
description: Learn how to convert a Word document into other supported file formats using Syncfusion<sup>&reg;</sup> Word library (Essential<sup>&reg;</sup> DocIO)
44
platform: document-processing
55
control: DocIO
66
documentation: UG
@@ -26,20 +26,21 @@ The Essential<sup>&reg;</sup> DocIO converts documents from one format to anothe
2626
* Example: Image and PDF.
2727

2828

29-
Essential<sup>&reg;</sup> DocIO can convert various flow document as fixed document by using our layout engine. Following conversions are supported by Essential<sup>&reg;</sup> DocIO.
29+
Essential<sup>&reg;</sup> DocIO can convert various flow document as fixed document by using our layout engine. The following conversions are supported by Essential<sup>&reg;</sup> DocIO:
3030

31-
* Microsoft Word file format Conversions
3231
* Word document to PDF
3332
* Word document to Image
33+
* HTML Conversions
34+
* Markdown Conversions
3435
* RTF Conversions
3536
* Text Conversions
36-
* HTML Conversions
3737
* Word document to ODT
3838
* Word document to EPUB
39+
* Microsoft Word file format Conversions
3940

4041
## Converting Word document to PDF
4142

42-
Essential<sup>&reg;</sup> DocIO allows you to convert a Word document into PDF with a few lines of code. For further information kindly refer [here](https://help.syncfusion.com/document-processing/word/conversions/word-to-pdf/net/word-to-pdf).
43+
Essential<sup>&reg;</sup> DocIO allows you to convert Word documents into PDF with just a few lines of code. For further information, kindly refer [here](https://help.syncfusion.com/document-processing/word/conversions/word-to-pdf/net/word-to-pdf).
4344

4445

4546
### Customizing the Word document to PDF conversion
@@ -51,29 +52,23 @@ Essential<sup>&reg;</sup> DocIO allows you to customize the Word to PDF conversi
5152
* Allows to determine the quality of the JPEG images in the converted PDF
5253
* Allows to reduce the Main Memory usage in Word to PDF conversion by reusing the identical images.
5354

54-
For further information kindly refer [here](https://help.syncfusion.com/document-processing/word/conversions/word-to-pdf/net/word-to-pdf#customization-settings).
55+
For further information, kindly refer [here](https://help.syncfusion.com/document-processing/word/conversions/word-to-pdf/net/word-to-pdf#customization-settings).
5556

5657

5758
### Unsupported elements in Word to PDF conversion
5859

59-
Kindly refer the [here](https://help.syncfusion.com/document-processing/word/conversions/word-to-pdf/net/word-to-pdf#unsupported-elements-in-word-to-pdf-conversion) for list of Unsupported elements in Word to PDF conversion
60+
Kindly refer [here](https://help.syncfusion.com/document-processing/word/conversions/word-to-pdf/net/word-to-pdf#unsupported-elements-in-word-to-pdf-conversion) for a list of unsupported elements in Word to PDF conversion.
6061

6162

6263
## Rendering / Converting Word document to Image
6364

64-
Essential<sup>&reg;</sup> DocIO supports to convert the Word document to images using [RenderAsImages](https://help.syncfusion.com/cr/document-processing/Syncfusion.DocIO.DLS.WordDocument.html#Syncfusion_DocIO_DLS_WordDocument_RenderAsImages_Syncfusion_DocIO_DLS_ImageType_) method. For further information kindly refer [here](https://help.syncfusion.com/document-processing/word/conversions/word-to-image/net/word-to-image).
65-
66-
67-
## RTF conversion
68-
69-
Essential<sup>&reg;</sup> DocIO supports to convert the RTF document into Word document and vice versa. For further information kindly refer [here](https://help.syncfusion.com/document-processing/word/word-library/net/rtf).
70-
65+
Essential<sup>&reg;</sup> DocIO supports converting Word documents to images using the [RenderAsImages](https://help.syncfusion.com/cr/document-processing/Syncfusion.DocIO.DLS.WordDocument.html#Syncfusion_DocIO_DLS_WordDocument_RenderAsImages_Syncfusion_DocIO_DLS_ImageType_) method. For further information, kindly refer [here](https://help.syncfusion.com/document-processing/word/conversions/word-to-image/net/word-to-image).
7166

7267
## HTML conversion
7368

74-
Essential<sup>&reg;</sup> DocIO supports converting the HTML file into Word document and vice versa. It supports only the HTML files that meet the validation either against XHTML 1.0 strict or XHTML 1.0 Transitional schema.
69+
Essential<sup>&reg;</sup> DocIO supports converting the HTML file into Word document and vice versa. It supports only HTML files that meet the validation against the either XHTML 1.0 strict or XHTML 1.0 Transitional schema.
7570

76-
For further information kindly refer [here](https://help.syncfusion.com/document-processing/word/word-library/net/html).
71+
For further information, kindly refer [here](https://help.syncfusion.com/document-processing/word/conversions/html-conversions).
7772

7873

7974
### Customizing the HTML to Word conversion
@@ -84,7 +79,7 @@ You can customize the HTML to Word conversion with the following options:
8479
* Insert the HTML string at the specified position of the document body contents
8580
* Append HTML string to the specified paragraph
8681

87-
For further information kindly refer [here](https://help.syncfusion.com/document-processing/word/word-library/net/html#customization-settings).
82+
For further information, kindly refer [here](https://help.syncfusion.com/document-processing/word/conversions/html-conversions#customizing-the-html-to-word-conversion).
8883

8984
### Customizing the Word to HTML conversion
9085

@@ -96,20 +91,38 @@ You can customize the Word to HTML conversion with the following options:
9691
* Specify the CSS style sheet type and its name
9792

9893
N>
99-
While exporting header and footer, DocIO exports the first section header content at the top of the HTML file and first section footer content at the end of the HTML file
94+
While exporting the header and footer, DocIO exports the first section's header content at the top of the HTML file and first section's footer content at the end of the HTML file.
10095

101-
For further information kindly refer [here](https://help.syncfusion.com/document-processing/word/word-library/net/html#customization-settings).
96+
For further information, kindly refer [here](https://help.syncfusion.com/document-processing/word/conversions/html-conversions#customizing-the-word-to-html-conversion).
10297

10398
### Supported Document elements
10499

105-
Kindly refer the [here](https://help.syncfusion.com/document-processing/word/word-library/net/html#supported-and-unsupported-items) for the document elements and attributes are supported by DocIO in Word to HTML and HTML to Word conversions.
100+
Kindly refer [here](https://help.syncfusion.com/document-processing/word/conversions/html-conversions#supported-and-unsupported-items) for the document elements and attributes are supported by DocIO in Word to HTML and HTML to Word conversions.
106101

102+
## Markdown conversion
107103

108-
## Text file
104+
Essential<sup>&reg;</sup> DocIO supports converting Markdown files to Word documents and vice versa.
109105

110-
Essential<sup>&reg;</sup> DocIO supports to convert the Word document into Text file and vice versa. For further information kindly refer [here](https://help.syncfusion.com/document-processing/word/word-library/net/text).
106+
For further information, kindly refer to the following links:
107+
* [Markdown to Word conversion](https://help.syncfusion.com/document-processing/word/conversions/markdown-to-word-conversion)
108+
* [Word to Markdown conversion](https://help.syncfusion.com/document-processing/word/conversions/word-to-markdown-conversion)
109+
110+
## RTF conversion
111+
112+
Essential<sup>&reg;</sup> DocIO supports converting RTF documents to Word documents and vice versa. For further information, kindly refer [here](https://help.syncfusion.com/document-processing/word/conversions/rtf-conversions).
113+
114+
## Text conversion
115+
116+
Essential<sup>&reg;</sup> DocIO supports converting Word documents to text files and vice versa. For further information, kindly refer [here](https://help.syncfusion.com/document-processing/word/conversions/text-conversions).
117+
118+
## Word to ODT
119+
120+
Essential<sup>&reg;</sup> DocIO supports converting Word documents to ODT. For further information, kindly refer [here](https://help.syncfusion.com/document-processing/word/conversions/word-to-odt-conversion).
111121

112-
113122
## Word to EPUB
114123

115-
Essential<sup>&reg;</sup> DocIO supports to convert the Word document into EPUB v2.0. It only supports in Windows Forms, UWP, WPF, ASP.NET Web and MVC platforms. For further information kindly refer [here](https://help.syncfusion.com/document-processing/word/word-library/net/word-to-epub).
124+
Essential<sup>&reg;</sup> DocIO supports converting Word documents to EPUB v2.0. This feature is supported only on Windows Forms, UWP, WPF, ASP.NET Web, and MVC platforms. For further information, kindly refer [here](https://help.syncfusion.com/document-processing/word/conversions/word-to-epub-conversion).
125+
126+
## Microsoft Word File Format Conversions
127+
128+
Essential<sup>&reg;</sup> DocIO supports converting Word documents between different Microsoft Word file formats, including DOCX, DOCM, DOTX, DOTM, WordML, DOC, and DOT. You can load a document in one Word format and save it in another supported Word format. For further information, kindly refer [here](https://help.syncfusion.com/document-processing/word/conversions/word-file-formats-conversions).

0 commit comments

Comments
 (0)