Class TableGenerator
Class TableGenerator
Namespace: Aspose.Pdf.Plugins
Assembly: Aspose.PDF.dll
يمثل مكون Aspose.PDF TableGenerator.
public sealed class TableGenerator : IPlugin, IDisposable
الوراثة
تنفيذ
الأعضاء الموروثة
object.GetType(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()
أمثلة
المثال يوضح كيفية إضافة جدول إلى ملف 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);
المنشئات
TableGenerator()
public TableGenerator()
الطرق
Dispose()
تنفيذ IDisposable. في الواقع، ليس من الضروري لـ TableGenerator.
public void Dispose()
Process(IPluginOptions)
يبدأ معالجة PdfGenerator بالمعلمات المحددة.
public ResultContainer Process(IPluginOptions options)
المعلمات
options
IPluginOptions
كائن الخيارات يحتوي على تعليمات لـ PdfGenerator.
العائدات
كائن ResultContainer يحتوي على نتيجة العملية.