Class Splitter
Info
Represents Documentize.Splitter plugin. Used to Split PDF documents into separate pages.
public static 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 SplitOptions object to set instructions
var options = new SplitOptions();
// Add input file path
options.AddInput(new FileDataSource("path_to_your_pdf_file.pdf"));
// Set output file paths
options.AddOutput(new FileDataSource("path_to_result_pdf_file_1.pdf"));
options.AddOutput(new FileDataSource("path_to_result_pdf_file_2.pdf"));
// Perform the process
Splitter.Process(options);
Methods
Process(SplitOptions)
Starts the Documentize.Splitter processing with the specified parameters.
public static ResultContainer Process(SplitOptions options)
Parameters
options
SplitOptions: An options object containg instructions for the operation.
Returns
ResultContainer : An Documentize.ResultContainer object containing the result of the operation.
Exceptions
Namespace: Documentize Assembly: Documentize.dll