如何防止跨越多行的 iText 表 PdfPCell 跨页拆分?
我正在使用 iText (iTextSharp 5.1.1),我正在尝试做一些表格。
第一个表列跨越几行。根据之前的内容,该专栏有时会分为两页。有时,第一页上只会保留一行,而该列的高度不足以显示标签。
有没有什么方法可以检测一列如果添加到文档中是否会跨越两页,以便我可以填写一些行来防止这种行为。
或者有没有办法告诉细胞在任何情况下不要分裂?
I am using iText (iTextSharp 5.1.1) and I am trying to do some tables.
The first table column spans across several rows. Depending on previous content, the column would sometimes be split on two pages. Sometimes, only one row would remain on the first page, leaving the column not high enough for a label to be displayed.
Is there any way to detect if a column would span across two pages if added to a document, so I can fill in some rows to prevent this behavior.
Or is there a way to tell a cell not to split under any circumstances?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,我用 Java 中的 iText 2.1.7 编写了您的示例:
并且按照 Kornelije 的要求,它工作得很好...只有当我使用 table.setSplitLate(false) 时,才会产生“错误”输出。 code>,因此使用默认值
true
一切都很好。Well, I coded your example with iText 2.1.7 in Java:
And it works quite well as asked by Kornelije... The "wrong" output will only be produced, when I use
table.setSplitLate(false)
, so with the default value oftrue
everything is just fine.