Class TableGenerator

Class TableGenerator

Namespace: Aspose.Pdf.Plugins
Assembly: Aspose.PDF.dll

Aspose.PDFのTableGeneratorプラグインを表します。

public sealed class TableGenerator : IPlugin, IDisposable

継承

objectTableGenerator

実装

IPlugin, IDisposable

継承メンバー

object.GetType(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()

この例では、PDFファイルにテーブルを追加する方法を示します。

// TableGeneratorを作成
var generator = new TableGenerator();
// 指示を設定するためのTableOptionsオブジェクトを作成
var opt = new TableOptions();
// 入力ファイルパスを追加
opt.AddInput(new FileDataSource(inputPath1));
opt.AddInput(new FileDataSource(inputPath2));
// 出力ファイルパスを設定
opt.AddOutput(new FileDataSource(outputPath));
// 抽出プロセスを実行
generator.Process(opt);

コンストラクター

TableGenerator()

public TableGenerator()

メソッド

Dispose()

IDisposableの実装。実際には、TableGeneratorには必要ありません。

public void Dispose()

Process(IPluginOptions)

指定されたパラメーターでPdfGenerator処理を開始します。

public ResultContainer Process(IPluginOptions options)

パラメーター

options IPluginOptions

PdfGeneratorの指示を含むオプションオブジェクトです。

戻り値

ResultContainer

操作の結果を含むResultContainerオブジェクトです。

例外

NotSupportedException

 日本語