itextsharp 修改分页符上的表格标题行
我在列中使用 itextsharp pdfptables。我有一个很长并且跨多个页面的表格。标题“XYZ”按应有的方式重复,但我希望标题在后续页面上为“XYZ - 继续”。我尝试在表中查找事件,但没有成功!
我正在 VB.net 中工作,但 C# 中的示例也可以工作。
任何帮助表示赞赏!
I am using itextsharp pdfptables in columns. I have a table that is very long and goes across multiple pages. The header, "XYZ", repeats as it should but I want the header to be "XYZ - Continued" on subsequent pages. I have tried looking for an event in the table but no luck!
I am working in VB.net but samples in C# work too.
Any help is appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议查看
PdfPTableEvent
。还有一个文档级页面事件,尽管它没有那么有用在这种情况下。
我认为您需要一个部分空白的标题,然后必须在
PdfPTableEvent
回调期间填写变量部分。是的,这记录了 iText 的 Java 版本。然而,所有方法都是相同的,或者非常接近。您的 IDE 应该可以帮助您消除任何差异。
I recommend taking a look at
PdfPTableEvent
.There's also a document level page event, though it's not as helpful in this case.
I think you'll need a partially blank header, and then have to fill in the variable parts during your
PdfPTableEvent
callbacks.Yes, this documents the Java version of iText. However, all the methods are identical, or very nearly so. Your IDE should help you iron out any differences.