مولد الجدول الفئة
معلومات
يمثل ملحق Documentize.TableGenerator. يستخدم لإضافة جدول إلى وثيقة PDF.
public sealed class TableGenerator
الوراثة
الأعضاء الموروثة
- object.GetType(),
- object.ToString(),
- object.Equals(object?),
- object.Equals(object?, object?),
- object.ReferenceEquals(object?, object?),
- object.GetHashCode()
أمثلة
المثال يوضح كيفية إضافة جدول إلى ملف PDF.
// إنشاء مولد الجدول
var plugin = new TableGenerator();
// إنشاء كائن TableOptions لتعيين التعليمات
TableOptions opt = new TableOptions().InsertPageBefore(1)
.AddTable()
.AddRow()
.AddCell().AddParagraph("اسم")
.AddCell().AddParagraph("عمر")
.AddRow()
.AddCell().AddParagraph("بوب")
.AddCell().AddParagraph("12")
.AddRow()
.AddCell().AddParagraph("سام")
.AddCell().AddParagraph("20")
.AddRow()
.AddCell().AddParagraph("ساندي")
.AddCell().AddParagraph("26")
.AddRow()
.AddCell().AddParagraph("توم")
.AddCell().AddParagraph("12")
.AddRow()
.AddCell().AddParagraph("جيم")
.AddCell().AddParagraph("27");
// إضافة مسار الملف المدخل
opt.AddInput(new FileDataSource(inputPath1));
// تعيين مسار الملف الناتج
opt.AddOutput(new FileDataSource(outputPath));
// تنفيذ العملية
plugin.Process(opt);
المنشئات
TableGenerator()
public TableGenerator()
الطرق
Process(TableOptions)
يبدأ معالجة Documentize.TableGenerator باستخدام المعاملات المحددة.
public ResultContainer Process(TableOptions options)
المعاملات
options
TableOptions: كائن خيارات يحتوي على تعليمات لمولد Documentize.TableGenerator.
العائدات
ResultContainer : كائن ResultContainer يحتوي على نتيجة العملية.
Namespace: Documentize Assembly: Documentize.dll