Class PdfXls

Class PdfXls

Nama dari : Aspose.Pdf.Plugins Pendaftaran: Aspose.PDF.dll

Menampilkan Aspose.Pdf.Plugins.PdfXls plugin.

public sealed class PdfXls : IPlugin, IDisposable

Inheritance

object PdfXls

Implements

IPlugin , IDisposable

anggota yang diwarisi

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

Examples

Contohnya menunjukkan cara mengkonversi PDF ke dokumen 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()

Pembuatan IDISPOSIBLE.

public void Dispose()

Process(Pilihan IPlugin)

Memulai pemrosesan PdfToExcel dengan parameter yang ditentukan.

public ResultContainer Process(IPluginOptions options)

Parameters

options IPluginOptions

Objek opsi yang berisi instruksi untuk Aspose.Pdf.Plugins.PdfXls.

Returns

ResultContainer

Sebuah objek Aspose.Pdf.Plugins.ResultContainer yang berisi hasil operasi.

 Indonesia