How to set Report Footer only show on last page in my report on the buttom area
Hi,
Please try setting the following property on a the footer:
// Retrieve a reference to the band's footer.Infragistics.Documents.Reports.Report.Band.IBandFooter bandFooter = band.Footer;
// The band will NOT repeat on every page; // it will only be seen on the last page.bandFooter.Repeat = false;
and let me know if it worked for you.