Wordize for .NET enables developers to efficiently split PDF documents into parts. Whether you need to extract individual pages from a PDF, divide document content into chapters, or break a large PDF into smaller sections for easier sharing, the C# API provides all necessary capabilities. Try our online demo to test PDF document splitting in action. Simply upload your PDF document, specify splitting parameters, click the button and download the result. The demonstration also shows the C# code to help you understand how PDF splitting works in practice.
Key features
Common PDF splitting scenarios
Try professional PDF document splitting right now. Use our online demonstration to split your PDF in seconds. The C# code example updates dynamically based on your settings, showing how PDF splitting functions work in real-world applications!
using Wordize.Splitting;
Splitter.Split("Input.pdf", "Output_page.pdf",
new SplitOptions()
{
SplitCriteria = SplitCriteria.Page
}
);
using Wordize.Splitting;
Splitter.Split("Input.pdf", "Output_section.pdf",
new SplitOptions()
{
SplitCriteria = SplitCriteria.SectionBreak
}
);
Our product is fully cross-platform and supports all major .NET implementations:
As far as .NET code doesn't depend on the underlying hardware or operating system, but only on a Virtual Machine, you are free to develop any kind of software for Windows, macOS, Android, iOS and Linux. Just make sure you have installed the corresponding version of .NET Framework, .NET Core, Windows Azure, Mono or Xamarin.
We recommend using Microsoft Visual Studio, Xamarin, and MonoDevelop integrated development environments to create C#, F#, VB.NET applications.