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
Uygulamalar
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
İşlemin sonucunu içeren bir Aspose.Pdf.Plugins.ResultContainer nesnesi.