Class TableGenerator

Class TableGenerator

Название пространства: Aspose.Pdf.Plugins Ассоциация: Aspose.PDF.dll (25.4.0)

Представляет Aspose.PDF TableGenerator Plugin.

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

Действительно, это не требуется для TableGenerator.

public void Dispose()

Process(IPluginOptions)

Начинается обработка PdfGenerator с указанных параметров.

public ResultContainer Process(IPluginOptions options)

Parameters

options IPluginOptions

Объект опций содержит инструкции для PdfGenerator.

Returns

ResultContainer

Объект ResultContainer содержит результат операции.

Exceptions

NotSupportedException

 Русский