Posted 5 January 2026, 10:59 am EST
Description: We are using ActiveReports 19 (MESCIUS ActiveReports) to generate 508-compliant PDF documents from Section Reports in our ASP.NET Core application. We need to set PDF document metadata properties such as Title, Author, Subject, and Keywords to meet accessibility and document management requirements.
Current Limitation: According to the ActiveReports documentation, the PdfExport.Options property of type PdfDocumentOptions is read-only and only allows getting the options object, not setting it with custom values. The Options property provides access to various PDF export settings like:
PrintPresets
Security
Watermark
However, there appears to be no property or method available to set PDF document metadata such as:
Title - Document title displayed in PDF viewers
Author - Document author information
Use Case: We are generating government purchase order PDFs that require proper document metadata for:
Accessibility compliance (508/WCAG standards often require proper document titles)
Document management systems that index and search based on metadata
Professional document presentation when users view properties in PDF readers
Organizational requirements for document tracking and categorization
Expected Behavior: We would like one of the following solutions:
A read-write Options property that allows setting a custom PdfDocumentOptions instance with metadata properties
Additional properties on PdfDocumentOptions class for Title, Author, Subject, Keywords
A method like SetDocumentMetadata() on the PdfExport class
Documentation on an alternative approach to set PDF metadata when exporting Section Reports
Current Workaround Attempts: We have tried accessing the Options property but it only provides a getter, making it impossible to set custom metadata values during the export process. Code Example:
var pdfExport = new PdfExport();
pdfExport.Options.PDFUA1 = true; // This works - existing property
// Need something like:
// pdfExport.Options.Title = "Purchase Order #12345 ";
Environment:
ActiveReports Version: 19
Report Type: Section Reports (SectionReport class)
Export Format: PDF (using PdfExport class)
Framework: .NET 9 (ASP.NET Core Web API)
Question:
Is there a way to set PDF document metadata using the current Section Report API that we may have overlooked?
