Class TableGenerator

Class TableGenerator

ชื่อพื้นที่: Aspose.Pdf.Plugins การประกอบ: Aspose.PDF.dll (25.4.0)

ปลั๊กอิน Aspose.PDF TableGenerator

public sealed class TableGenerator : IPlugin, IDisposable

Inheritance

object TableGenerator

Implements

IPlugin , IDisposable

อนุญาโตตุลาการ

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(IPluginOptions)

เริ่มต้นการประมวลผล PdfGenerator ด้วยพารามิเตอร์ที่ระบุ

public ResultContainer Process(IPluginOptions options)

Parameters

options IPluginOptions

วัตถุตัวเลือกประกอบด้วยคําแนะนําสําหรับ PdfGenerator

Returns

ResultContainer

วัตถุ ResultContainer มีผลของการดําเนินงาน

Exceptions

NotSupportedException

 แบบไทย