Class XlsConverter

Class XlsConverter

Der Name: Aspose.Pdf.Plugins Versammlung: Aspose.PDF.dll (25.5.0)

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

public sealed class XlsConverter : IPlugin, IDisposable

Inheritance

object XlsConverter

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 XlsConverter converter
var converter = new XlsConverter();
// 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

XlsConverter()

public XlsConverter()

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 den Aspose.Pdf.Plugins.XlsConverter.

Returns

ResultContainer

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

 Deutsch