Class XlsConverter

Info

Represents Documentize.XlsConverter plugin. Used to convert PDF documents into XLSX/XLS format.

public sealed class XlsConverter

Inheritance

objectXlsConverter

Inherited Members

Examples

The example demonstrates how to convert PDF to XLSX document.

// create XlsConverter
var plugin = new XlsConverter();
// create PdfToXlsOptions 
var options = new PdfToXlsOptions();
// add input file path
options.AddInput(new FileDataSource(inputPath));
// set output file path
options.AddOutput(new FileDataSource(outputPath));
// perform the process
plugin.Process(options);

Constructors

XlsConverter()

public XlsConverter()

Methods

Process(PdfToXlsOptions)

Starts the Documentize.XlsConverter processing with the specified parameters.

public ResultContainer Process(PdfToXlsOptions options)

Parameters

  • options PdfToXlsOptions: An options object containg instructions for the operation.

Returns

ResultContainer : An Documentize.ResultContainer object containing the result of the operation.

Namespace: Documentize Assembly: Documentize.dll

 English