7

我正在使用 iTextSharp 创建 pdf。

是否可以在pdfptable中的行之间提供空间?

4

2 回答 2

4

您需要使用表事件来做到这一点。

Java 示例: http: //itextpdf.com/examples/iia.php ?id=95

C# 示例: http://kuujinbo.info/iTextInAction2Ed/index.aspx?ch=Chapter05&ex= PressPreviews

请注意,我假设您希望单元格间距(而不是单元格填充)类似于您在此处看到的内容:http ://examples.itextpdf.com/results/part1/chapter05/press_previews.pdf

于 2012-11-07T07:41:36.190 回答
1

您可以添加一个具有固定跨度、无边框和换行短语的单元格,如下所示:

PdfPCell blankRow = new PdfPCell(new Phrase("\n"));
blankRow.setFixedHeight(5f);
blankRow.setColspan(4);
blankRow.setBorder(Rectangle.NO_BORDER);
于 2019-03-27T00:57:02.693 回答