ByteScout Premium Suite - C# - Set pdf document information with pdf sdk - ByteScout

ByteScout Premium Suite – C# – Set pdf document information with pdf sdk

  • Home
  • /
  • Articles
  • /
  • ByteScout Premium Suite – C# – Set pdf document information with pdf sdk

How to set pdf document information with pdf sdk in C# using ByteScout Premium Suite

This code in C# shows how to set pdf document information with pdf sdk with this how to tutorial

The documentation is designed for a specific purpose to help you to apply the features on your side. ByteScout Premium Suite is the bundle that includes twelve SDK products from ByteScout including tools and components for PDF, barcodes, spreadsheets, screen video recording. It can be applied to set pdf document information with pdf sdk using C#.

The following code snippet for ByteScout Premium Suite works best when you need to quickly set pdf document information with pdf sdk in your C# application. IF you want to implement the functionality, just copy and paste this code for C# below into your code editor with your app, compile and run your application. Further improvement of the code will make it more robust.

All these programming tutorials along with source code samples and ByteScout free trial version are available for download from our website.

On-demand (REST Web API) version:
 Web API (on-demand version)

On-premise offline SDK for Windows:
 60 Day Free Trial (on-premise)

Program.cs
      
using System; using System.Diagnostics; using Bytescout.PDF; namespace DocumentInformation { /// <summary> /// This example demonstrates how to set various document properties. /// </summary> class Program { static void Main() { // Create new document Document pdfDocument = new Document(); pdfDocument.RegistrationName = "demo"; pdfDocument.RegistrationKey = "demo"; // Change document information. // Open Document Properties in PDF viewer to see the changes. pdfDocument.DocumentInfo.Author = "John Doe"; pdfDocument.DocumentInfo.Creator = "My Application"; pdfDocument.DocumentInfo.Keywords = "accounting,invoice"; pdfDocument.DocumentInfo.Title = "Invoice #12345"; pdfDocument.DocumentInfo.Subject = "Invoice"; pdfDocument.DocumentInfo.CreationDate = new DateTime(2015, 12, 21); pdfDocument.DocumentInfo.ModificationDate = DateTime.Now; // Add empty page to make the document valid pdfDocument.Pages.Add(new Page(PaperFormat.A4)); // Save document to file pdfDocument.Save("result.pdf"); // Cleanup pdfDocument.Dispose(); // Open result document in default associated application (for demo purpose) ProcessStartInfo processStartInfo = new ProcessStartInfo("result.pdf"); processStartInfo.UseShellExecute = true; Process.Start(processStartInfo); } } }

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout Premium Suite Home Page

Explore ByteScout Premium Suite Documentation

Explore Samples

Sign Up for ByteScout Premium Suite Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

VIDEO

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout Premium Suite Home Page

Explore ByteScout Premium Suite Documentation

Explore Samples

Sign Up for ByteScout Premium Suite Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next