Skip to content

Conversion from Docx to Doc format

Aspose edited this page Mar 17, 2014 · 2 revisions

Aspose.Words unique feature that provide flexibility in version conversions without affecting work. SaveFormat is enumeration that can convert document in the extensions given here.

Below is code snippet that shows conversion from docx to doc you can do it vice versa as well

Document doc = new Document("Sample.docx");
doc.Save("Converted.doc",SaveFormat.Doc);

Download

Clone this wiki locally