Class PdfExcel

PdfExcel class

Represents PdfExcel plugin.

public sealed class PdfExcel : IDisposable, IPlugin

Constructors

NameDescription
PdfExcel()The default constructor.

Methods

NameDescription
Dispose()Implementation of IDisposable.
Process(IPluginOptions)Starts the PdfToExcel processing with the specified parameters.

Examples

The example demonstrates how to convert PDF to XLSX document.

// create PdfExcel converter
var converter = new PdfExcel();
// create PdfToExcelOptions 
var opt = new PdfToExcelOptions();
// add input file path
opt.AddInput(new FileDataSource(inputPath));
// set output file path
opt.AddOutput(new FileDataSource(outputPath));
converter.Process(opt);

See Also