Class XlsConverter
XlsConverter class
Represents XlsConverter
plugin.
public sealed class XlsConverter : IDisposable, IPlugin
Constructors
Name | Description |
---|---|
XlsConverter() | The default constructor. |
Methods
Name | Description |
---|---|
Dispose() | Implementation of IDisposable. |
Process(IPluginOptions) | Starts the PdfToExcel processing with the specified parameters. |
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);
See Also
- interface IPlugin
- namespace Aspose.Pdf.Plugins
- assembly Aspose.PDF