Exemple #1
0
 /// <summary>
 /// Defines the reports page footer
 /// </summary>
 /// <param name="title">The title</param>
 /// <param name="components">The components to initialise with</param>
 public void DefinePageFooter
 (
     string title,
     params IReportComponentDefinition[] components
 )
 {
     this.PageFooter = new ReportSectionDefinition
                       (
         title,
         ReportSectionType.PageFooter,
         components
                       );
 }
Exemple #2
0
 /// <summary>
 /// Defines the reports body
 /// </summary>
 /// <param name="title">The title</param>
 /// <param name="components">The components to initialise with</param>
 public void DefineBody
 (
     string title,
     params IReportComponentDefinition[] components
 )
 {
     this.Body = new ReportSectionDefinition
                 (
         title,
         ReportSectionType.ReportBody,
         components
                 );
 }
Exemple #3
0
 /// <summary>
 /// Removes the reports page footer
 /// </summary>
 public void RemovePageFooter()
 {
     this.PageFooter = null;
 }
Exemple #4
0
 /// <summary>
 /// Removes the reports footer
 /// </summary>
 public void RemoveReportFooter()
 {
     this.ReportFooter = null;
 }
Exemple #5
0
 /// <summary>
 /// Removes the reports header
 /// </summary>
 public void RemoveReportHeader()
 {
     this.ReportHeader = null;
 }
Exemple #6
0
 /// <summary>
 /// Removes the reports page header
 /// </summary>
 public void RemovePageHeader()
 {
     this.PageHeader = null;
 }