How to create a rounded corner table using iText\\iTextSharp? [duplicate]
This question already has an answer here: How do I round the corners of an iTextSharp table border? 1 answer I have to create a table having rounded corners, something like it: Can I do it with iTextSharp? This is done using cell events. See the Calendar example from my book ( Java / C# ). Make sure that you don't add any "automated" borders to the cell, but draw the borders yourself in a cell event: table.DefaultCell.Border = PdfPCell.NO_BORDER; table.DefaultCell.CellEvent = new RoundedBorder(); The RoundedBorder class would then look like this: class RoundedBorder : IPdfPCellEvent { public