Class PdfXls

Class PdfXls

Namespace: Aspose.Pdf.Plugins
Assembly: Aspose.PDF.dll

Aspose.Pdf.Plugins.PdfXls eklentisini temsil eder.

public sealed class PdfXls : IPlugin, IDisposable

Miras

objectPdfXls

Uygulamalar

IPlugin, IDisposable

Miras Alınan Üyeler

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

Örnekler

Bu örnek, PDF’yi XLSX belgesine dönüştürmenin nasıl yapılacağını göstermektedir.

// PdfXLS dönüştürücüsünü oluştur
var converter = new PdfXLS();
// PdfToXLSOptions oluştur 
var opt = new PdfToXLSOptions();
// giriş dosyası yolunu ekle
opt.AddInput(new FileDataSource(inputPath));
// çıkış dosyası yolunu ayarla
opt.AddOutput(new FileDataSource(outputPath));
converter.Process(opt);

Yapıcılar

PdfXls()

public PdfXls()

Metotlar

Dispose()

IDisposable’ın uygulanması.

public void Dispose()

Process(IPluginOptions)

Belirtilen parametrelerle PdfToExcel işlemine başlar.

public ResultContainer Process(IPluginOptions options)

Parametreler

options IPluginOptions

Aspose.Pdf.Plugins.PdfXls için talimatlar içeren bir seçenek nesnesi.

Dönüş Değeri

ResultContainer

İşlemin sonucunu içeren bir Aspose.Pdf.Plugins.ResultContainer nesnesi.

 Türkçe