PDF to DOC

The Documentize PDF Converter for .NET is a powerful tool designed to convert PDF documents into DOC formats. This component seamlessly transforms PDF pages into editable Microsoft Word documents, making it easy to reuse, edit, and share content across multiple platforms.

How to Convert PDF to DOC

To convert a PDF document to DOC format, follow these steps:

  1. Create an instance of PdfToDocOptions to configure the conversion process.
  2. Add the input PDF file using the AddInput method.
  3. Add the output file path for the resulting file using the AddOutput method.
  4. Run the Convert method to execute the conversion.
1// Create PdfToDocOptions object to set instructions
2var options = new PdfToDocOptions();
3// Add input file path
4options.AddInput(new FileData("path_to_your_pdf_file.pdf"));
5// Set output file path
6options.AddOutput(new FileData("path_to_result_file.doc"));
7// Perform the process
8PdfConverter.Convert(options);

Converting PDF to DOC with Custom Options

The PDF to DOC Converter plugin provides several options to customize your conversion process. You can choose between different modes to control how the layout and structure of the PDF are handled during conversion.

 1// Create PdfToDocOptions object to set instructions
 2var options = new PdfToDocOptions();
 3// Add input file path
 4options.AddInput(new FileData("path_to_your_pdf_file.pdf"));
 5// Set output file path
 6options.AddOutput(new FileData("path_to_result_file.doc"));
 7// Set Mode
 8options.Mode = DocConversionMode.Flow;
 9// Perform the process
10PdfConverter.Convert(options);

Key Features:

  • DOC Conversion: Convert PDF documents to editable Microsoft Word formats (DOC).
  • Maintain Formatting: Retain the original layout, text, and formatting during the conversion process.
 English