Class TableGenerator

Class TableGenerator

nazivni prostor: Aspose.Pdf.Plugins Sastav: Aspose.PDF.dll (25.4.0)

Predstavlja Aspose.PDF TableGenerator plugin.

public sealed class TableGenerator : IPlugin, IDisposable

Inheritance

object TableGenerator

Implements

IPlugin , IDisposable

naslijeđeni članovi

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

Examples

Primjer pokazuje kako dodati tablicu u PDF datoteku.

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

Uvođenje IDisposable. u stvari, to nije potrebno za TableGenerator.

public void Dispose()

Process(IPluginopcije)

Početak obrade PdfGenerator s određenim parametrima.

public ResultContainer Process(IPluginOptions options)

Parameters

options IPluginOptions

Objekt opcija sadrži upute za PdfGenerator.

Returns

ResultContainer

Objekt ResultContainer sadrži rezultat operacije.

Exceptions

NotSupportedException

 Hrvatski