0
我想使用iText將單元格的高度修剪爲內容的高度。如果我把段落在單元格中:iText - 將單元格的高度修剪爲單元格的高度
PdfPCell cell = new PdfPCell(prepare(new Paragraph("asd", textCellFont)));
table.addCell(cell);
有一個頂部填充,我不知道爲什麼。
你能幫我嗎?
我想使用iText將單元格的高度修剪爲內容的高度。如果我把段落在單元格中:iText - 將單元格的高度修剪爲單元格的高度
PdfPCell cell = new PdfPCell(prepare(new Paragraph("asd", textCellFont)));
table.addCell(cell);
有一個頂部填充,我不知道爲什麼。
你能幫我嗎?
的PdfPCell類有setPaddingTop方法,嘗試:
cell.setPaddingTop(0)
如果頂部填充仍然存在,唯一的其他原因可能是該段領先包含在小區中。