Пример #1
0
 /// <summary>
 /// Adds a page before rows or columns.
 /// </summary>
 /// <remarks>
 /// Call this method to insert a page break before the next row or column that you intend to print
 /// using <b>PrintRow(s)</b> or <b>PrintColumn(s)</b> methods.
 /// See the <see cref="ManualBuild"/> event for more details.
 /// </remarks>
 public void PageBreak()
 {
     if (!IsManualBuild)
     {
         throw new TableManualBuildException();
     }
     FHelper.PageBreak();
 }
Пример #2
0
 /// <summary>
 /// Adds a page before rows or columns.
 /// </summary>
 /// <remarks>
 /// Call this method to insert a page break before the next row or column that you intend to print
 /// using <b>PrintRow(s)</b> or <b>PrintColumn(s)</b> methods.
 /// See the <see cref="ManualBuild"/> event for more details.
 /// </remarks>
 public void PageBreak()
 {
     if (!IsManualBuild)
     {
         throw new TableManualBuildException();
     }
     if (!Report.Engine.UnlimitedHeight && !Report.Engine.UnlimitedWidth)
     {
         helper.PageBreak();
     }
 }