Greetings!
I have created a table containing of a single row and a single column (hence the table consists of a single cell) and I configured the table to contain no paddings (see screenshot). The cell does not use paddings, too, since it is configured to inherit the settings from the table.
When I programmatically access the cell paddings for left and right, I get wrong values. I expect to get 0 for both values but it seems the default values are returned instead (which is 5,4pt).
Here is the code I use:
float leftPadding = cell.getCellFormat().getPaddings().getLeft();
float rightPadding = cell.getCellFormat().getPaddings().getRight();
Is this a bug or do I miss something here?
Kind regards,
Marcus