Class XlsConverter
Class XlsConverter
Namespace: Aspose.Pdf.Plugins
Assembly: Aspose.PDF.dll (25.3.0)
Represents Aspose.Pdf.Plugins.XlsConverter plugin.
public sealed class XlsConverter : IPlugin, IDisposable
Inheritance
Implements
Inherited Members
object.GetType(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()
Examples
The example demonstrates how to convert PDF to XLSX document.
// 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()
Implementation of IDisposable.
public void Dispose()
Process(IPluginOptions)
Starts the PdfToExcel processing with the specified parameters.
public ResultContainer Process(IPluginOptions options)
Parameters
options
IPluginOptions
An options object containing instructions for the Aspose.Pdf.Plugins.XlsConverter.
Returns
An Aspose.Pdf.Plugins.ResultContainer object containing the result of the operation.