Class PdfXls

Class PdfXls

名称: Aspose.Pdf.Plugins 编辑: Aspose.PDF.dll

代表 Aspose.Pdf.Plugins.PdfXls 插件。

public sealed class PdfXls : IPlugin, IDisposable

Inheritance

object PdfXls

Implements

IPlugin , IDisposable

继承人

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

Examples

示例显示如何将 PDF 转换为 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()

不可能的实施。

public void Dispose()

Process(IPlugin 选项)

以指定的参数开始 PdfToExcel 处理。

public ResultContainer Process(IPluginOptions options)

Parameters

options IPluginOptions

包含 Aspose.Pdf.Plugins.PdfXls 的指示的选项对象。

Returns

ResultContainer

包含操作结果的 Aspose.Pdf.Plugins.ResultContainer 对象。

 中文