Class XlsConverter

Class XlsConverter

Pôvodný názov: Aspose.Pdf.Plugins Zhromaždenie: Aspose.PDF.dll (25.4.0)

Predstavuje Aspose.Pdf.Plugins.XlsConverter plugin.

public sealed class XlsConverter : IPlugin, IDisposable

Inheritance

object XlsConverter

Implements

IPlugin , IDisposable

Z dedičných členov

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

Examples

Príklad ukazuje, ako previesť PDF do dokumentu 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()

Vykonávanie IDISPOSIBLE.

public void Dispose()

Process(IPluginopcie)

Začína sa spracovanie PdfToExcel s špecifikovanými parametrami.

public ResultContainer Process(IPluginOptions options)

Parameters

options IPluginOptions

Objekt možností, ktorý obsahuje pokyny pre Aspose.Pdf.Plugins.XlsConverter.

Returns

ResultContainer

Aspose.Pdf.Plugins.ResultContainer objekt obsahujúci výsledok operácie.

 Slovenčina