Class TableGenerator

Classe TableGenerator

Rappresenta il plugin TableGenerator di Aspose.PDF.

public sealed class TableGenerator : IDisposable, IPlugin

Costruttori

NomeDescrizione
TableGenerator()Il costruttore predefinito.

Metodi

NomeDescrizione
Dispose()Implementazione di IDisposable. In effetti, non è necessario per TableGenerator.
Process(IPluginOptions)Avvia l’elaborazione di PdfGenerator con i parametri specificati.

Esempi

L’esempio dimostra come aggiungere una tabella a un file 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);

Vedi Anche