I used iTextSharp to create PDF document. Added table. Checked the PDF accessibility through PAC 2.0. When I read the document through "ScreenReader Preview" option of the PAC tool,table cells are not wrapped. PDF document is generated the table as expected. Used below code.
PdfPTable table = new PdfPTable(3);
table.TotalWidth = 500f;
table.LockedWidth = true;
float[] widths = new float[] { 20f, 60f, 60f};
table.SetWidths(widths);
PdfPCell cell = new PdfPCell(new Phrase("text 1", times));
table.AddCell(cell);
cell = new PdfPCell(new Phrase("text 2", times));
table.AddCell(cell);
cell = new PdfPCell(new Phrase("text 3", times));
table.AddCell(cell);
How I can fix this?
Thank you