Class TableGenerator

TableGenerator class

تمثل مكون Aspose.PDF TableGenerator.

public sealed class TableGenerator : IDisposable, IPlugin

Constructors

NameDescription
TableGenerator()المُنشئ الافتراضي.

Methods

NameDescription
Dispose()تنفيذ IDisposable. في الواقع، ليس من الضروري لمكون TableGenerator.
Process(IPluginOptions)يبدأ معالجة PdfGenerator مع المعلمات المحددة.

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);

See Also