クラスのマージ

情報

Documentize.Mergerプラグインを表します。複数のPDFドキュメントを1つのPDFにマージするために使用されます。

public sealed class Merger

継承

objectMerger

継承メンバー

この例は、2つのPDFドキュメントをマージする方法を示しています。

// create Merger
var plugin = new Merger();
// create MergeOptions object to set instructions
var opt = new MergeOptions();
// add input file paths
opt.AddInput(new FileDataSource(inputPath1));
opt.AddInput(new FileDataSource(inputPath2));
// set output file path
opt.AddOutput(new FileDataSource(outputPath));
// perform the process
plugin.Process(opt);

コンストラクタ

Merger()

public Merger()

メソッド

Process(MergeOptions)

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

public ResultContainer Process(MergeOptions options)

パラメータ

  • options MergeOptions: 操作の指示を含むオプションオブジェクトです。

戻り値

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

Namespace: Documentize Assembly: Documentize.dll

 日本語