I generate a report via C#. Sometimes there is more than one table (StiTable) inserted in the report. Each table has a footerRow with no borders.
The generated report could look like this:
If a table breaks the page, the footer should show the text weiter auf der nächsten Seite ... before the pagebreak. The footer should not be shown at the end of the table.
As you can see, at the first page and on the last page the footer rows of the tables are correct. At the second page the footer ought to be not shown.
I couldn't find the right setting to do this. In this case I tried the setting
Code: Select all
_table.FooterPrintOn = StiPrintOnType.ExceptLastPage;
I would be glad, if your suggested solution could help me out of this misery.
Thanks in advance.