hello,
i'm using Telerik reporting version 11.2.17.1025
when i'm tring to generate simple PDF/UA using EnableAccessability property in deviceinfo object
and check the output file in adobe acrobat reader properties i see that "Tagged PDF" is still "No".
other properties on deviceinfo work fine.
this is the simple source code i'm using:
Dim reportProcessor As New ReportProcessor()
Dim deviceInfo As New System.Collections.Hashtable()
deviceInfo.Add("EnableAccessiblity", "True")
deviceInfo.Add("DocumentAuthor", "Shlomi Kakon")
Dim rs As New Telerik.Reporting.InstanceReportSource()
rs.ReportDocument = New BarcodesReport()
Dim result As RenderingResult = reportProcessor.RenderReport("PDF", rs, deviceInfo)
File.WriteAllBytes(String.Format("C:\Temp\{0}.", Guid.NewGuid.ToString("n")) & result.Extension, result.DocumentBytes)
what can be the problem?
thank's
Shlomi