.net - How can I repeat the Specific row headers of table in iTextSharp -


pdfptable.headerrows property number of rows gives entire 3 rows..

pdfptable table = new pdfptable(11); table.defaultcell.padding = 11; table.widthpercentage = 96; table.defaultcell.borderwidth = 1; table.splitlate = false; table.splitrows = true; table.headerrows =3;` 

the above code returning first 3 rows repeated pages header...but want repeat third row header...


Comments