Class TableGenerator

Class TableGenerator

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

Predstavuje Aspose.PDF TableGenerator plugin.

public sealed class TableGenerator : IPlugin, IDisposable

Inheritance

object TableGenerator

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 pridať tabuľku do súboru PDF.

// create TableGenerator
var generator = new TableGenerator();
// create TableOptions object to set instructions
var opt = new TableOptions();
// add input file paths
opt.AddInput(new FileDataSource(inputPath1));
opt.AddInput(new FileDataSource(inputPath2));
// set output file path
opt.AddOutput(new FileDataSource(outputPath));
// perform extraction process
generator.Process(opt);

Constructors

TableGenerator()

public TableGenerator()

Methods

Dispose()

Implementácia IDisposable.V skutočnosti to nie je potrebné pre TableGenerator.

public void Dispose()

Process(IPluginopcie)

Začína sa spracovanie PdfGenerator so špecifikovanými parametrami.

public ResultContainer Process(IPluginOptions options)

Parameters

options IPluginOptions

Objekt možnosti obsahuje pokyny pre PdfGenerator.

Returns

ResultContainer

Objekt ResultContainer obsahuje výsledok operácie.

Exceptions

NotSupportedException

 Slovenčina