// Load the PDF document from directory
Document doc ...[/quote]
[mw_shl_code=csharp,true]
// Load the document from directory
Document doc = new Document(dir + "input.doc", TempDocuemntLoadOption );
// Save the document in DOCX format
doc.Save(dir + "output.docx", TempDocxSaveOption);
doc.Save(dir + "output.pdf", TempPdfaveOption);
// Load the PDF document from directory
Document doc = new Document(dir + "input.pdf");
// Save the document in DOCX format
doc.Save(dir + "output.docx");