Class PdfXls

Class PdfXls

Namespace: Aspose.Pdf.Plugins
Assembly: Aspose.PDF.dll

Represents Aspose.Pdf.Plugins.PdfXls plugin.

public sealed class PdfXls : IPlugin, IDisposable

Inheritance

objectPdfXls

Implements

IPlugin, IDisposable

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 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);

Constructors

PdfXls()

public PdfXls()

Methods

Dispose()

Implementation of IDisposable.

public void Dispose()

Process(IPluginOptions)

Starts the PdfToExcel processing with the specified parameters.

public ResultContainer Process(IPluginOptions options)

Parameters

options IPluginOptions

An options object containing instructions for the Aspose.Pdf.Plugins.PdfXls.

Returns

ResultContainer

An Aspose.Pdf.Plugins.ResultContainer object containing the result of the operation.

 English