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ファイルにテーブルを追加する方法を示します。
// 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オブジェクトです。