예제 #1
0
 private void setDefaultFooter()
 {
     if (string.IsNullOrEmpty(_printDate))
     {
         return;
     }
     _footer = new DefaultFooterProvider(PdfFont, _printDate, _direction);
 }
예제 #2
0
 /// <summary>
 /// Defines custom footer of the each page.
 /// </summary>
 /// <param name="footer">a custom footer.</param>
 public void CustomFooter(IPageFooter footer)
 {
     _pdfReport.DataBuilder.SetFooter(footer);
 }
예제 #3
0
 /// <summary>
 /// Defines custom footer of the each page.
 /// If sets to null, the DefaultFooterProvider will be used automatically.
 /// </summary>
 /// <param name="footer">a custom footer.</param>
 public void SetFooter(IPageFooter footer)
 {
     _footer = footer;
 }
 /// <summary>
 /// Defines custom footer of the each page.
 /// </summary>
 /// <param name="footer">a custom footer.</param>
 public void CustomFooter(IPageFooter footer)
 {
     _pdfReport.DataBuilder.SetFooter(footer);
 }
예제 #5
0
 private void setDefaultFooter()
 {
     if (string.IsNullOrEmpty(_printDate)) return;
     _footer = new DefaultFooterProvider(PdfFont, _printDate, _direction);
 }
예제 #6
0
 /// <summary>
 /// Defines custom footer of the each page.
 /// If sets to null, the DefaultFooterProvider will be used automatically.
 /// </summary>
 /// <param name="footer">a custom footer.</param>
 public void SetFooter(IPageFooter footer)
 {
     _footer = footer;
 }