PDF SDK Features, Benefits, Tutorials - ByteScout
Announcement
Our ByteScout SDK products are sunsetting as we focus on expanding new solutions.
Learn More Open modal
Close modal
Announcement Important Update
ByteScout SDK Sunsetting Notice
Our ByteScout SDK products are sunsetting as we focus on our new & improved solutions. Thank you for being part of our journey, and we look forward to supporting you in this next chapter!

PDF SDK

ByteScout PDF SDK - C# - Document - Merge Two Documents Program.cs using System.Diagnostics; using Bytescout.PDF; namespace CopyPagesFromOneDocumentToAnother { class Program { static void Main(string[] args) { // Open first document Document document1 = new Document("document1.pdf"); document1.RegistrationName = "demo"; document1.RegistrationKey = "demo"; // Open second document Document document2 = new Document("document2.pdf"); document2.RegistrationName = "demo"; document2.RegistrationKey = "demo"; // Add pages from document2 to document1 for (int i = 0; i < document2.Pages.Count; ++i) { document1.Pages.Add(document2.Pages[i]); [...]
ByteScout PDF SDK - VB.NET - Reorder Pages Program.vb   Click here to get your Free Trial version of the SDK
ByteScout PDF SDK - C# - Reorder Pages Program.cs   Click here to get your Free Trial version of the SDK
ByteScout PDF SDK - VB.NET - Security - Remove Protection Program.vb   Click here to get your Free Trial version of the SDK
ByteScout PDF SDK - VB.NET - Forms - Read Form Values Program.vb   Click here to get your Free Trial version of the SDK
ByteScout PDF SDK - C# - Security - Remove Protection Program.cs   Click here to get your Free Trial version of the SDK
ByteScout PDF SDK - C# - Forms - Read Form Values Program.cs   Click here to get your Free Trial version of the SDK
ByteScout PDF SDK - C# - .NET Core 2.0 - Document - Create New Program.cs   Click here to get your Free Trial version of the SDK
ByteScout PDF SDK - VBScript and VB6 - Text - Word Spacing WordSpacing.vbs   Click here to get your Free Trial version of the SDK
ByteScout PDF SDK - VBScript and VB6 - Text - Watermarks Watermarks.vbs   Click here to get your Free Trial version of the SDK