How can I repeat the headers of an iTextSharp PdfPTable on each page?

人盡茶涼 提交于 2019-11-27 01:54:19

问题


How can I get iTextSharp to repeat the headers of a PdfPTable on each page of the generated PDF?


回答1:


You just need to set the PdfPTable.HeaderRows property to the number of rows in your PdfPTable's header like this:

table.HeaderRows = 1;


来源:https://stackoverflow.com/questions/2062983/how-can-i-repeat-the-headers-of-an-itextsharp-pdfptable-on-each-page

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!