Class XlsConverter

Class XlsConverter

ชื่อพื้นที่: Aspose.Pdf.Plugins การประกอบ: Aspose.PDF.dll (25.4.0)

ปลั๊กอิน Aspose.Pdf.Plugins.XlsConverter

public sealed class XlsConverter : IPlugin, IDisposable

Inheritance

object XlsConverter

Implements

IPlugin , IDisposable

อนุญาโตตุลาการ

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

Examples

ตัวอย่างนี้แสดงให้เห็นว่าวิธีการแปลงไฟล์ PDF เป็นเอกสาร XLSX

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

การดําเนินการของ IDISPOSIBLE

public void Dispose()

Process(IPluginOptions)

เริ่มต้นการประมวลผล PdfToExcel ด้วยพารามิเตอร์ที่ระบุ

public ResultContainer Process(IPluginOptions options)

Parameters

options IPluginOptions

วัตถุตัวเลือกที่มีคําแนะนําสําหรับ Aspose.Pdf.Plugins.XlsConverter

Returns

ResultContainer

A Aspose.Pdf.Plugins.ResultContainer วัตถุที่มีผลของการดําเนินงาน

 แบบไทย