Class TableGenerator

Class TableGenerator

ja nimityö: Aspose.Pdf.Plugins Kokoelma: Aspose.PDF.dll (25.4.0)

Esittelee Aspose.PDF TableGenerator plugin.

public sealed class TableGenerator : IPlugin, IDisposable

Inheritance

object TableGenerator

Implements

IPlugin , IDisposable

Perintöjäsenet

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

Examples

Esimerkki osoittaa, miten lisätä taulukko PDF-tiedostoon.

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

Implementation of IDisposable. Itse asiassa, se ei ole tarpeen TableGenerator.

public void Dispose()

Process(IPluginoptiot)

PdfGeneratorin käsittely aloitetaan määritellyt parametrit.

public ResultContainer Process(IPluginOptions options)

Parameters

options IPluginOptions

Optio-objekti sisältää ohjeita PdfGeneratorille.

Returns

ResultContainer

ResultContainer-objekti sisältää toiminnan tuloksen.

Exceptions

NotSupportedException

 Suomi