New to Telerik Document Processing? Start 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:
| Property | Description |
|---|---|
| Author | The author of the document. |
| Title | The title of the document. |
| Description | Text that describes the content of the document. |
| Keywords | Gets or sets the keywords associated with the document. (Introduced in Q3 2025) |
| Creator | Gets 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) |
| Producer | Gets 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) |
| CreationDate | Gets the date and time when the entity was created. (Introduced in Q3 2025) |
| ModificationDate | Gets 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
DocumentInfoproperty values are lost when importing.