我有一个表格,其中的单元格设置如下:
Paragraph p = new Paragraph(content,font);
p.setLeading(30);
PdfPCell c = new PdfPCell(p);
我的问题是段落前导被忽略了。有人可以告诉我如何在表格单元格内设置段落引导?不在单元格内时,它可以很好地工作。
感谢。
答案 0 :(得分:4)
谷歌"文字模式"之间的区别和"复合模式"。 您正在使用"文本模式":正在使用单元格的前导 帐户;该段的前导被忽略。 如果你使用"复合模式",那反过来说。
尝试:
PdfPCell c = new PdfPCell();
c.addElement(p);