Class Splitter
Info
Represents Documentize.Splitter plugin. Used to split documents into separate pages.
public class Splitter
Inheritance
Inherited Members
- object.GetType(),
- object.MemberwiseClone(),
- object.ToString(),
- object.Equals(object?),
- object.Equals(object?, object?),
- object.ReferenceEquals(object?, object?),
- object.GetHashCode()
Examples
The example demonstrates how to split PDF document.
// create Splitter
var plugin = new Splitter();
// create SplitOptions object to set instructions
var opt = new SplitOptions();
// add input file path
opt.AddInput(new FileDataSource(inputPath));
// set output file paths
opt.AddOutput(new FileDataSource(outputPath1));
opt.AddOutput(new FileDataSource(outputPath2));
// perform the process
plugin.Process(opt);
Constructors
Splitter()
public Splitter()
Methods
Process(IPluginOptions)
Starts the Documentize.Splitter processing with the specified parameters.
public ResultContainer Process(IPluginOptions options)
Parameters
options
IPluginOptions: An options object containg instructions for the Documentize.Splitter.
Returns
ResultContainer : An ResultContainer object containg the result of the operation.
Exceptions
Namespace: Documentize Assembly: Documentize.dll