Class PdfXls

Class PdfXls

Der Name: Aspose.Pdf.Plugins Versammlung: Aspose.PDF.dll

Es handelt sich um Aspose.Pdf.Plugins.PdfXls Plugin.

public sealed class PdfXls : IPlugin, IDisposable

Inheritance

object PdfXls

Implements

IPlugin , IDisposable

Vererbte Mitglieder

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

Examples

Das Beispiel zeigt, wie man PDF in ein XLSX-Dokument konvertiert.

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

Implementierung von IDISPOSIBLE.

public void Dispose()

Process(IPluginOptionen)

Beginnt die PdfToExcel-Verarbeitung mit den angegebenen Parameter.

public ResultContainer Process(IPluginOptions options)

Parameters

options IPluginOptions

Ein Optionsobjekt mit Anweisungen für die Aspose.Pdf.Plugins.PdfXls.

Returns

ResultContainer

Ein Aspose.Pdf.Plugins.ResultContainer Objekt, das das Ergebnis der Operation enthält.

 Deutsch