Skip to main content
All docs
V23.2

How to: Print Groups with Footers on Separate Pages

This example handles the AfterPrintRow event to print group rows with footers on separate pages.

private void gridView1_AfterPrintRow(object sender, Views.Printing.PrintRowEventArgs e) {
    if(e.HasFooter)
        e.PS.InsertPageBreak(e.Y);
}

Print Groups with Footers on Separate Pages