Class TableGenerator
Class TableGenerator
Nom dels espais: Aspose.Pdf.Plugins Assemblea: Aspose.PDF.dll (25.4.0)
Representa el plugin Aspose.PDF TableGenerator.
public sealed class TableGenerator : IPlugin, IDisposable
Inheritance
Implements
Membres heretats
object.GetType() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Examples
L’exemple demostra com afegir taula al fitxer 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()
Implementació de IDisposable. De fet, no és necessari per a TableGenerator.
public void Dispose()
Process(Opcions IPlugin)
Comença el processament del PdfGenerator amb els paràmetres especificats.
public ResultContainer Process(IPluginOptions options)
Parameters
options
IPluginOptions
Un objecte d’opcions conté instruccions per al PdfGenerator.
Returns
Un objecte de ResultContainer conté el resultat de l’operaci.