Class TableGenerator
Class TableGenerator
Nama dari : Aspose.Pdf.Plugins Pengumpulan: Aspose.PDF.dll (25.5.0)
Menampilkan Aspose.PDF TableGenerator plugin.
public sealed class TableGenerator : IPlugin, IDisposableInheritance
Implements
anggota yang diwarisi
object.GetType() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Examples
Contohnya menunjukkan cara menambahkan tabel ke 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()
Implementasi IDisposable.Sebenarnya, itu tidak diperlukan untuk TableGenerator.
public void Dispose()Process(Pilihan IPlugin)
Memulai pemrosesan PdfGenerator dengan parameter yang ditentukan.
public ResultContainer Process(IPluginOptions options)Parameters
options IPluginOptions
Objek opsi berisi instruksi untuk PdfGenerator.
Returns
Sebuah objek ResultContainer mengandung hasil operasi.