Class XlsConverter

XlsConverter class

Represents XlsConverter plugin.

public sealed class XlsConverter : IDisposable, IPlugin

Constructors

NameDescription
XlsConverter()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 XlsConverter converter
var converter = new XlsConverter();
// 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