Class PdfXls

Class PdfXls

Nazwa przestrzeń: Aspose.Pdf.Plugins Zgromadzenie: Aspose.PDF.dll

Przedstawia się wtyczka Aspose.Pdf.Plugins.PdfXls.

public sealed class PdfXls : IPlugin, IDisposable

Inheritance

object PdfXls

Implements

IPlugin , IDisposable

Dziedziczeni członkowie

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

Examples

Przykład pokazuje, jak konwertować PDF do dokumentu XLSX.

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

Wdrożenie niemożliwej.

public void Dispose()

Process(Opcje IPlugin)

Rozpoczyna się przetwarzanie PdfToExcel z określonymi parametrami.

public ResultContainer Process(IPluginOptions options)

Parameters

options IPluginOptions

Obiekt opcji zawierający instrukcje dla Aspose.Pdf.Plugins.PdfXls.

Returns

ResultContainer

Obiekt Aspose.Pdf.Plugins.ResultContainer zawierający wynik operacji.

 Polski