Convert to WordProcessing

GroupDocs.Conversion can convert any source document to the following WordProcessing formats: Doc, Docm, Docx, Dot, Dotx, Rtf, Odt, Ott, Mobi, Txt. When just instantiate the WordProcessingConvertOptions class without specifying the target format explicitly, Docx will be used as a default format.

Conversion to WordProcessing format could be triggered by following below steps:

The following code show how to convert any document to WordProcessing document. 

Converter converter = new Converter("sample.pdf");
WordProcessingConvertOptions options = new WordProcessingConvertOptions();
converter.convert("converted.docx", options);