Is it possible to add cell padding in a PdfGridCell at the same time as using the BackgroundImage property? The padding is working correctly when using text, but as soon as I use the BackgroundImage, the cell have no padding whatsoever. Here's the code snippet:
PdfPaddings cellPadding = new PdfPaddings();
cellPadding.All = 3;
PdfBitmap pBmp = new PdfBitmap(img);
cell.Style.BackgroundImage = pBmp;
cell.Value = "";
cell.Style.CellPadding = cellPadding;