Available for: UI for ASP.NET MVC | UI for ASP.NET AJAX | UI for Blazor | UI for WPF | UI for WinForms | UI for Silverlight | UI for Xamarin | UI for WinUI | UI for ASP.NET Core | UI for .NET MAUI

New to Telerik Document Processing? Download free 30-day trial

RadFixedDocumentInfo

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

In this article