Class TableGenerator
Class TableGenerator
名称: Aspose.Pdf.Plugins 合計: Aspose.PDF.dll (25.4.0)
Aspose.PDF TableGenerator プラグインを表示します。
public sealed class TableGenerator : IPlugin, IDisposable
Inheritance
Implements
相続人
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(IPluginオプション)
PdfGenerator の処理を指定されたパラメーターで開始します。
public ResultContainer Process(IPluginOptions options)
Parameters
options
IPluginOptions
オプション オブジェクトには PdfGenerator の指示が含まれています。
Returns
ResultContainer オブジェクトには、作業の結果が含まれています。