Class TableGenerator
Class TableGenerator
De naam: Aspose.Pdf.Plugins Verzameling: Aspose.PDF.dll (25.4.0)
Vertegenwoordigt Aspose.PDF TableGenerator plugin.
public sealed class TableGenerator : IPlugin, IDisposable
Inheritance
Implements
Geëerbiede leden
object.GetType() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Examples
Het voorbeeld laat zien hoe u een tabel toevoegt aan een PDF-bestand.
// 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()
Implementatie van IDisposable. in feite is het niet nodig voor TableGenerator.
public void Dispose()
Process(IPluginopties)
De verwerking van de PdfGenerator begint met de aangegeven parameters.
public ResultContainer Process(IPluginOptions options)
Parameters
options
IPluginOptions
Een optie object bevat instructies voor de PdfGenerator.
Returns
Een ResultContainer-object bevat het resultaat van de operatie.