Hi,
Do you have sample code of generating nested tables but they must wcag 2.1 compliant?
I found this blog: https://blog.aspose.com/2019/09/17/tag-tables-in-pdf-document-for-accessibility-using-aspose.pdf-for-.net/
Using that code in that blog, when I was trying to nest a table inside a TableTDElement:
…
TableTDElement tdElement = trElement.CreateTD();
TableElement tableElement2 = taggedContent.CreateTableElement();
tdElement.AppendChild(tableElement2);
It does not nest inside that TD element…
Thank you.
Regards,
qme