New to Telerik Document ProcessingStart a free 30-day trial

RadFixedDocumentInfo

Updated on Jun 3, 2026

The RadFixedDocumentInfo class holds additional metadata about a PDF document. You can access it through the DocumentInfo property of RadFixedDocument.

The following table lists the available properties:

PropertyDescription
AuthorThe author of the document.
TitleThe title of the document.
DescriptionText that describes the content of the document.
KeywordsGets or sets the keywords associated with the document. (Introduced in Q3 2025)
CreatorGets or sets the name of the creator of the document. If the document was converted to PDF from another format, this is the name of the application that created the original document. (Introduced in Q3 2025)
ProducerGets or sets the name of the producer associated with the item. If the document was converted to PDF from another format, this is the name of the application that converted it to PDF. (Introduced in Q3 2025)
CreationDateGets the date and time when the entity was created. (Introduced in Q3 2025)
ModificationDateGets the date and time when the object was last modified. (Introduced in Q3 2025)
C#
RadFixedDocument document = new RadFixedDocument();
RadFixedDocumentInfo documentInfo = document.DocumentInfo;
documentInfo.Author = "Jane Doe";
documentInfo.Title = "RadFixedDocument";
documentInfo.Description = "This document is intended to explain the RadFixedDocument class from the RadPdfProcessing.";
documentInfo.Keywords = "keyword1, keyword2, keyword3";
documentInfo.Creator = "Telerik PdfProcessing Library";
documentInfo.Producer = "Telerik PdfProcessing Library";

DateTime? modificationDate = documentInfo.ModificationDate;

If the document information is stored in the XMP metadata of a PDF document, the DocumentInfo property values are lost when importing.

See Also

In this article
See Also
Not finding the help you need?
Contact Support