文档彩票走势图>>FastReport中文文档>>示例 7.插入分页符
示例 7.插入分页符
使用 "Table "对象的 "PageBreak "方法,可以在打印表格时插入分页符。在打印行/列之前调用该方法。
我们将使用示例 1 演示 "PageBreak "方法如何工作。让我们在新页面上打印第三行。
private void Table1_ManualBuild(object sender, EventArgs e) { // print the row 0 with all its columns Table1.PrintRow(0); Table1.PrintColumns(); // print the row 1 with all its columns Table1.PrintRow(1); Table1.PrintColumns(); // insert page break before the row 2 Table1.PageBreak(); // print the row 2 with all its columns Table1.PrintRow(2); Table1.PrintColumns(); }
因此,我们可以得到以下结果: