文檔首頁(yè)>>FastReport中文文檔>>示例 7.插入分頁(yè)符
示例 7.插入分頁(yè)符
使用 "Table "對(duì)象的 "PageBreak "方法,可以在打印表格時(shí)插入分頁(yè)符。在打印行/列之前調(diào)用該方法。
我們將使用示例 1 演示 "PageBreak "方法如何工作。讓我們?cè)谛马?yè)面上打印第三行。
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(); }
因此,我們可以得到以下結(jié)果: