Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
20
Please Help Me... I want To Show Report Footer only in last page
posted

How to set Report Footer only show on last page in my report on the buttom area

Parents
No Data
Reply
  • 16310
    Offline posted

    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.

Children
No Data