Class TableGenerator
Class TableGenerator
Název místa: Aspose.Pdf.Plugins Sbírka: Aspose.PDF.dll (25.4.0)
Představuje Aspose.PDF TableGenerator plugin.
public sealed class TableGenerator : IPlugin, IDisposable
Inheritance
Implements
Dědiční členové
object.GetType() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Examples
Příklad ukazuje, jak přidat tabulku do souboru 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()
Implementace IDisposable. ve skutečnosti to není nutné pro TableGenerator.
public void Dispose()
Process(IPluginopce)
Začíná zpracování PdfGenerator s specifikovanými parametry.
public ResultContainer Process(IPluginOptions options)
Parameters
options
IPluginOptions
Objekt možnosti obsahuje pokyny pro PdfGenerator.
Returns
Objekt ResultContainer obsahuje výsledek operace.