Class PdfGeneratorOptions
Class PdfGeneratorOptions
Namespace: Aspose.Pdf.Plugins
Assembly: Aspose.PDF.dll
Represents options for Generator plugins.
public abstract class PdfGeneratorOptions : IPluginOptions
Inheritance
Derived
Implements
Inherited Members
object.GetType(), object.MemberwiseClone(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()
Properties
Inputs
Returns PdfGenerator plugin data collection.
public List<idatasource> Inputs { get; }
Property Value
List<IDataSource>
Outputs
Gets collection of added targets for saving operation results.
public List<idatasource> Outputs { get; }
Property Value
List<IDataSource>
Methods
AddInput(IDataSource)
Adds new data source to the PdfGenerator plugin data collection.
public void AddInput(IDataSource dataSource)
Parameters
dataSource
IDataSource
Data source to add.
AddOutput(IDataSource)
Adds new data source to the PdfGenerator plugin data collection.
public void AddOutput(IDataSource saveDataSource)
Parameters
saveDataSource
IDataSource
Data source (file or stream) for saving operation results.