Class Splitter
Class Splitter
Именује се: Aspose.Pdf.Plugins Асамблеја: Aspose.PDF.dll (25.4.0)
Представља Aspose.Pdf.Plugins.Splitter плугин.
public class Splitter : IPlugin
Inheritance
Implements
Наслеђени чланови
object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Examples
Пример показује како поделити ПДФ документ.
// 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(ИПЛУГИНОПЦИЈА)
Почиње се обрада Aspose.Pdf.Plugins.Splitter са одређеним параметрима.
public ResultContainer Process(IPluginOptions options)
Parameters
options
IPluginOptions
Опција објекат са упутствима за Aspose.Pdf.Plugins.Splitter.
Returns
Резултат контејнер објекат који садржи резултат операције.