Class TableGenerator
Class TableGenerator
Το όνομα: Aspose.Pdf.Plugins Συγκέντρωση: Aspose.PDF.dll (25.4.0)
Αντιπροσωπεύει το Aspose.PDF TableGenerator plugin.
public sealed class TableGenerator : IPlugin, IDisposable
Inheritance
Implements
Κληρονομημένα μέλη
object.GetType() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Examples
Το παράδειγμα δείχνει πώς να προσθέσετε έναν πίνακα στο αρχείο 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()
Εφαρμογή του IDisposable. στην πραγματικότητα, δεν είναι απαραίτητο για TableGenerator.
public void Dispose()
Process(IPluginΕπιλογές)
Ξεκινά η επεξεργασία του PdfGenerator με τις καθορισμένες παραμέτρους.
public ResultContainer Process(IPluginOptions options)
Parameters
options
IPluginOptions
Ένα αντικείμενο επιλογών περιέχει οδηγίες για το PdfGenerator.
Returns
Ένα αντικείμενο ResultContainer περιέχει το αποτέλεσμα της λειτουργίας.