Splitter Class
Wordize.Splitting.Splitter class. Provides methods intended to split the documents into parts using different criteria.
Splitter class
Provides methods intended to split the documents into parts using different criteria.
public class Splitter : Processor
Methods
| Name | Description |
|---|---|
| static Create(SplitterContext) | Creates Splitter processor with specified Splitter context. |
| Execute() | Execute the processor action. |
| Execute(CancellationToken) | Execute the processor action allowing canceling document processing task using specified cancellation token. |
| From(Stream) | Specifies input document for processing. |
| From(string) | Specifies input document for processing. |
| From(Stream, LoadOptions) | Specifies input document for processing. |
| From(string, LoadOptions) | Specifies input document for processing. |
| To(string) | Specifies output file for the processor. |
| To(List<Stream>, SaveFormat) | Specifies output Document streams list. |
| To(List<Stream>, SaveOptions) | Specifies output Document streams list. |
| To(Stream, SaveFormat) | Specifies output stream for the processor. |
| To(Stream, SaveOptions) | Specifies output stream for the processor. |
| To(string, SaveFormat) | Specifies output file for the processor. |
| To(string, SaveOptions) | Specifies output file for the processor. |
| static ExtractPages(string, string, int, int) | Removes empty pages from the document and saves the output. |
| static ExtractPages(Stream, Stream, SaveFormat, int, int) | Removes empty pages from the document and saves the output in the specified format. |
| static ExtractPages(string, string, SaveFormat, int, int) | Removes empty pages from the document and saves the output in the specified format. |
| static RemoveBlankPages(string, string) | Removes empty pages from the document and saves the output. |
| static RemoveBlankPages(Stream, Stream, SaveFormat) | Removes empty pages from the document and saves the output in the specified format. |
| static RemoveBlankPages(string, string, SaveFormat) | Removes empty pages from the document and saves the output in the specified format. |
| static Split(Stream, SaveFormat, SplitOptions) | Splits the document into parts. |
| static Split(string, string, SplitOptions) | Splits the document into parts. |
| static Split(string, string, SaveFormat, SplitOptions) | Splits the document into parts. |
See Also
- class Processor
- namespace Wordize.Splitting
- assembly Wordize