User-1535678595 posted
I have a problem with my pdf tables header and footer.
PdfPTable Headtable = new PdfPTable(7);
Headtable.TotalWidth = 525f;
Headtable.LockedWidth = true;
Headtable.HeaderRows = 3;
When i add the HeaderRows and test it, It works perfect. I get a header on each side.
But if i Add a FooterRows.
PdfPTable Headtable = new PdfPTable(7);
Headtable.TotalWidth = 525f;
Headtable.LockedWidth = true;
Headtable.HeaderRows = 3;
Headtable.FooterRows = 3;
My header disappears and the content that should have been in the header now is down in the footer.
How can I solve this so i can select the correct row for my footer?