Class XlsConverter
Class XlsConverter
名称: Aspose.Pdf.Plugins 集合: Aspose.PDF.dll (25.4.0)
代表 Aspose.Pdf.Plugins.XlsConverter 插件。
public sealed class XlsConverter : IPlugin, IDisposable
Inheritance
Implements
继承人
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()
不可能的实施。
public void Dispose()
Process(IPlugin 选项)
以指定的参数开始 PdfToExcel 处理。
public ResultContainer Process(IPluginOptions options)
Parameters
options
IPluginOptions
包含 Aspose.Pdf.Plugins.XlsConverter 的指示的选项对象。
Returns
包含操作结果的 Aspose.Pdf.Plugins.ResultContainer 对象。