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 - Information Program.cs   Click here to get your Free Trial version of the SDK
ByteScout PDF SDK - C# - Document - Create New Program.cs   Click here to get your Free Trial version of the SDK
ByteScout PDF SDK - C# - Display Options Program.cs   Click here to get your Free Trial version of the SDK
ByteScout PDF SDK - C# - Copy Pages From One Document To Another 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) [...]
ByteScout PDF SDK - C# - Annotations - Video Program.cs   Click here to get your Free Trial version of the SDK
ByteScout PDF SDK - C# - Annotations - Text Program.cs   Click here to get your Free Trial version of the SDK
ByteScout PDF SDK - C# - Annotations - Sound Program.cs   Click here to get your Free Trial version of the SDK
ByteScout PDF SDK - C# - Annotations - Markup Program.cs   Click here to get your Free Trial version of the SDK
ByteScout PDF SDK - C# - Annotations - File Attachment Program.cs sample_attachment.txt   Click here to get your Free Trial version of the SDK
ByteScout PDF SDK - C# - Annotations - 3D Program.cs   Click here to get your Free Trial version of the SDK