Class PdfXls
Class PdfXls
Namespace: Aspose.Pdf.Plugins
Assembly: Aspose.PDF.dll
Stellt das Aspose.Pdf.Plugins.PdfXls-Plugin dar.
public sealed class PdfXls : IPlugin, IDisposable
Vererbung
Implementiert
Vererbte Mitglieder
object.GetType(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()
Beispiele
Das Beispiel zeigt, wie man ein PDF in ein XLSX-Dokument konvertiert.
// Erstelle PdfXLS-Konverter
var converter = new PdfXLS();
// Erstelle PdfToXLSOptions
var opt = new PdfToXLSOptions();
// Füge den Eingabepfad hinzu
opt.AddInput(new FileDataSource(inputPath));
// Setze den Ausgabepfad
opt.AddOutput(new FileDataSource(outputPath));
converter.Process(opt);
Konstruktoren
PdfXls()
public PdfXls()
Methoden
Dispose()
Implementierung von IDisposable.
public void Dispose()
Process(IPluginOptions)
Startet die PdfToExcel-Verarbeitung mit den angegebenen Parametern.
public ResultContainer Process(IPluginOptions options)
Parameter
options
IPluginOptions
Ein Optionsobjekt, das Anweisungen für das Aspose.Pdf.Plugins.PdfXls enthält.
Rückgabewert
Ein Aspose.Pdf.Plugins.ResultContainer-Objekt, das das Ergebnis der Operation enthält.