Class DocConverter
Info
Represents Documentize.DocConverter plugin. Used to convert PDF documents into DOC/DOCX format.
public sealed class DocConverter
Inheritance
Inherited Members
- object.GetType(),
- object.ToString(),
- object.Equals(object?),
- object.Equals(object?, object?),
- object.ReferenceEquals(object?, object?),
- object.GetHashCode()
Examples
The example demonstrates how to convert PDF document to Doc format.
// create DocConverter
var plugin = new DocConverter();
// create PdfToDocOptions object to set instructions
var opt = new PdfToDocOptions();
// add input file path
opt.AddInput(new FileDataSource(inputPath));
// set output file path
opt.AddOutput(new FileDataSource(outputPath));
// perform the process
plugin.Process(opt);
Constructors
DocConverter()
public DocConverter()
Methods
Dispose()
Implementation of IDisposable.
public void Dispose()
Process(PdfToDocOptions)
Starts the Documentize.DocConverter processing with the specified parameters.
public ResultContainer Process(PdfToDocOptions options)
Parameters
options
PdfToDocOptions: An options object containing instructions for the Documentize.DocConverter.
Returns
ResultContainer : An Documentize.ResultContainer object containing the result of the operation.
Namespace: Documentize Assembly: Documentize.dll