Class TableGenerator
Class TableGenerator
Le nom : Aspose.Pdf.Plugins Assemblée: Aspose.PDF.dll (25.4.0)
Represente il plugin Aspose.PDF TableGenerator.
public sealed class TableGenerator : IPlugin, IDisposable
Inheritance
Implements
I membri ereditari
object.GetType() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Examples
L’esempio mostra come aggiungere una tabella al 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);
Constructors
TableGenerator()
public TableGenerator()
Methods
Dispose()
Implementazione di IDisposabile.In realtà, non è necessario per TableGenerator.
public void Dispose()
Process(Options IPlugin)
Inizia il trattamento del PdfGenerator con i parametri specificati.
public ResultContainer Process(IPluginOptions options)
Parameters
options
IPluginOptions
Un oggetto di opzioni contiene istruzioni per il PdfGenerator.
Returns
Un oggetto ResultContainer contiene il risultato dell’operazione.