New to Telerik Document ProcessingStart a free 30-day trial

RadFixedDocumentInfo

Updated over 6 months ago

The RadFixedDocumentInfo class allows setting the following 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, the name of the application that created the original document from which it was converted. (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, 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 will be lost when importing.

Not finding the help you need?
Contact Support