Class PdfXls

PdfXls class

Represents PdfXls plugin.

public sealed class PdfXls : IDisposable, IPlugin

Constructors

NameDescription
PdfXls()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 PdfXLS converter
var converter = new PdfXLS();
// create PdfToXLSOptions 
var opt = new PdfToXLSOptions();
// add input file path
opt.AddInput(new FileDataSource(inputPath));
// set output file path
opt.AddOutput(new FileDataSource(outputPath));
converter.Process(opt);

See Also