Class PdfXls

Class PdfXls

Tên không gian: Aspose.Pdf.Plugins Tổng hợp: Aspose.PDF.dll

Hiển thị Aspose.Pdf.Plugins.PdfXls plugin.

public sealed class PdfXls : IPlugin, IDisposable

Inheritance

object PdfXls

Implements

IPlugin , IDisposable

Thành viên thừa kế

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

Examples

Ví dụ này cho thấy cách chuyển đổi PDF sang tài liệu 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()

Việc thực hiện IDISPOSIBLE

public void Dispose()

Process(IPluginTùy chọn)

Bắt đầu xử lý PdfToExcel với các thông số được chỉ định.

public ResultContainer Process(IPluginOptions options)

Parameters

options IPluginOptions

Một đối tượng tùy chọn có chứa hướng dẫn cho Aspose.Pdf.Plugins.PdfXls.

Returns

ResultContainer

Một Aspose.Pdf.Plugins.ResultContainer đối tượng chứa kết quả hoạt động.

 Tiếng Việt