Click or drag to resize
Pdf Library for .NET

Document Properties

Select.Pdf allows you to set the basic document information for the generated pdf files:

  • Title

  • Author

  • Subject

  • Keywords

  • Creation Date

This can be done using DocumentInformation property of the PdfDocument object.

Code Sample
// set the document properties
doc.DocumentInformation.Title = "Select.Pdf for .NET Sample";
doc.DocumentInformation.Author = "Select.Pdf Samples";
doc.DocumentInformation.Subject = "Select.Pdf Library Samples";
doc.DocumentInformation.Keywords = "pdf library, sample code";
doc.DocumentInformation.CreationDate = DateTime.Now;
See Also