I have a 3 pages document.
On page 1, the table continue on page 2, the footer is Ok
*** On page 2, the next table continue on page 3, but the footer is semi-masked but this table
on page 3, the footer is Ok
My footer is 2 lines and contains an image on 1st line then a text on 2nd line.
i add the footer then i add the tables
Code:
[....]
Dim section As MDO.Section = pdfDoc.AddSection()
section.PageSetup.OddAndEvenPagesHeaderFooter = False
Dim footer As New MDO.HeaderFooter()
Dim para As New MDO.Paragraph()
Dim font As New MDO.Font()
Dim imageFooter As New MDO.Shapes.Image(FooterImage)
para.Add(imageFooter)
para.AddLineBreak()
font.Color = MDO.Colors.SteelBlue
para.AddFormattedText("Footer text goes here", font)
para.Format.Alignment = MDO.ParagraphAlignment.Center
footer.Add(para)
section.Footers.Primary = footer
CreateReportTable()
[...]
see screenshot