Class TableGenerator

Class TableGenerator

Numele spaţiului: Aspose.Pdf.Plugins Asamblare: Aspose.PDF.dll (25.4.0)

Representează Aspose.PDF TableGenerator plugin.

public sealed class TableGenerator : IPlugin, IDisposable

Inheritance

object TableGenerator

Implements

IPlugin , IDisposable

Membrii moștenitori

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

Examples

Exemplul arată cum să adăugați o tabelă la fișierul 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()

De fapt, nu este necesar pentru TableGenerator.

public void Dispose()

Process(Opțiuni IPlugin)

Începe procesarea PdfGenerator cu parametrii specificați.

public ResultContainer Process(IPluginOptions options)

Parameters

options IPluginOptions

Un obiect de opțiuni conține instrucțiuni pentru PdfGenerator.

Returns

ResultContainer

Un obiect ResultContainer conține rezultatul operațiunii.

Exceptions

NotSupportedException

 Română