Class Splitter
Class Splitter
Pôvodný názov: Aspose.Pdf.Plugins Zhromaždenie: Aspose.PDF.dll (25.4.0)
Predstavuje Aspose.Pdf.Plugins.Splitter plugin.
public class Splitter : IPlugin
Inheritance
Implements
Z dedičných členov
object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Examples
Príklad ukazuje, ako rozdeliť PDF dokument.
// 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(IPluginopcie)
Začína sa spracovanie Aspose.Pdf.Plugins.Splitter so špecifikovanými parametrami.
public ResultContainer Process(IPluginOptions options)
Parameters
options
IPluginOptions
Objekt možností, ktorý obsahuje pokyny pre Aspose.Pdf.Plugins.Splitter.
Returns
Objekt ResultContainer obsahujúci výsledok operácie.