Class Splitter
Class Splitter
De naam: Aspose.Pdf.Plugins Verzameling: Aspose.PDF.dll (25.4.0)
Vertegenwoordigt Aspose.Pdf.Plugins.Splitter plugin.
public class Splitter : IPlugin
Inheritance
Implements
Geëerbiede leden
object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Examples
Het voorbeeld laat zien hoe je een PDF-document kunt splitsen.
// create Splitter
var splitter = new Splitter();
// create SplitOptions object to set instructions
var opt = new SplitOptions();
// add input file paths
opt.AddInput(new FileDataSource(inputPath));
// set output file paths
opt.AddOutput(new FileDataSource(outputPath1));
opt.AddOutput(new FileDataSource(outputPath2));
// perform the process
splitter.Process(opt);
Constructors
Splitter()
public Splitter()
Methods
Process(IPluginopties)
De verwerking van Aspose.Pdf.Plugins.Splitter begint met de aangegeven parameters.
public ResultContainer Process(IPluginOptions options)
Parameters
options
IPluginOptions
Een optie object met instructies voor de Aspose.Pdf.Plugins.Splitter.
Returns
Een ResultContainer object met het resultaat van de operatie.