Skip to main content
Skip table of contents

How to draw a borderless table in iTextSharp?

Is there some property on the PdfPTable class to set the borders of all its contained cells in one statement?

It appears as though the PDfPCell class does have a border property on it but not the PdfPTable class.

Is there some property on the PdfPTable class to set the borders of all its contained cells in one statement?

Posted on StackOverflow on Jun 3, 2014 by Water Cooler v2

Borders are defined at the level of the cell, not at the level of the table. Hence: if you want to remove the borders of the table, you need to remove the borders of each cell.

By default, each cell has a border. You can change this default behavior by changing the border of each cell. For instance: if you create PdfPCell objects, you use:

cell.setBorder(Rectangle.NO_BORDER);

In case the cells are created internally, you need to change that property at the level of the default cell.

table.getDefaultCell().setBorder(Rectangle.NO_BORDER);

For special borders, for instance borders with rounded corners or a single border for the whole table, or double borders, you can use either cell events or table events, or a combination of both.

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.