Class PdfXls

Class PdfXls

De naam: Aspose.Pdf.Plugins Verzameling: Aspose.PDF.dll

Vertegenwoordigt Aspose.Pdf.Plugins.PdfXls plugin.

public sealed class PdfXls : IPlugin, IDisposable

Inheritance

object PdfXls

Implements

IPlugin , IDisposable

Geëerbiede leden

object.GetType() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()

Examples

Het voorbeeld laat zien hoe u PDF naar XLSX document kunt converteren.

// 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()

De implementatie van het onmogelijke.

public void Dispose()

Process(IPluginopties)

De PdfToExcel-verwerking begint met de aangegeven parameters.

public ResultContainer Process(IPluginOptions options)

Parameters

options IPluginOptions

Een optie object met instructies voor de Aspose.Pdf.Plugins.PdfXls.

Returns

ResultContainer

Een Aspose.Pdf.Plugins.ResultContainer object met het resultaat van de operatie.

 Nederlands