We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug The Title property of PDFSimpleExport is not setting the title on the resulting PDF page as expected.
To Reproduce
public static FileContentResult ExportaPdf(Report report, string reportName) { FastReport.Export.PdfSimple.PDFSimpleExport pdfSimpleExport = new FastReport.Export.PdfSimple.PDFSimpleExport(); pdfSimpleExport.ShowProgress = true; pdfSimpleExport.Subject = SanitizeName(reportName); pdfSimpleExport.Name = SanitizeName(reportName); pdfSimpleExport.Title = SanitizeName(reportName); MemoryStream stream = new MemoryStream(); report.Report.Export(pdfSimpleExport, stream); stream.Flush(); report.Dispose(); pdfSimpleExport.Dispose(); stream.Position = 0; return new FileContentResult(stream.ToArray(), "application/pdf"); }
Observed behavior The title on the PDF page displays strange characters.
Expected Behavior:
The title on the PDF page should match the value assigned to the Title property of the PDFSimpleExport object.
Screenshots
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
The Title property of PDFSimpleExport is not setting the title on the resulting PDF page as expected.
To Reproduce
Observed behavior
The title on the PDF page displays strange characters.
Expected Behavior:
The title on the PDF page should match the value assigned to the Title property of the PDFSimpleExport object.
Screenshots
The text was updated successfully, but these errors were encountered: