I am building a table that spans multiple pages of my PDF. I would like the column header of the table to appear as the first row on each page. Is there some way that I can detect when the page is breaking and insert the column headers rather than the next data row?
views:
68answers:
1
+2
A:
Check the iTextSharp tutorial on SourceForge, chapter 5, section "Large Tables," example 10.
You basically call EndHeaders()
on your Table
.
Jay Riggs
2009-12-30 23:00:59
Thank you, I am not sure how I missed that in the docs. I guess I fail at RTFM :)
TheHurt
2009-12-30 23:07:00
Easy to miss considering the state of the documentation!
Jay Riggs
2009-12-30 23:36:47