/// <summary>
 /// Sets the report footer template content
 /// </summary>
 /// <param name="content">The content</param>
 public void SetReportFooterContent
 (
     string content
 )
 {
     if (this.ReportFooterContent == null)
     {
         this.ReportFooterContent = new SectionTemplateContent
                                    (
             this,
             content
                                    );
     }
     else
     {
         this.ReportFooterContent.SetContent
         (
             content
         );
     }
 }
 /// <summary>
 /// Sets the page header template content
 /// </summary>
 /// <param name="content">The content</param>
 public void SetPageHeaderContent
 (
     string content
 )
 {
     if (this.PageHeaderContent == null)
     {
         this.PageHeaderContent = new SectionTemplateContent
                                  (
             this,
             content
                                  );
     }
     else
     {
         this.PageHeaderContent.SetContent
         (
             content
         );
     }
 }
 /// <summary>
 /// Sets the report detail template content
 /// </summary>
 /// <param name="content">The content</param>
 public void SetDetailContent
 (
     string content
 )
 {
     if (this.DetailContent == null)
     {
         this.DetailContent = new SectionTemplateContent
                              (
             this,
             content
                              );
     }
     else
     {
         this.DetailContent.SetContent
         (
             content
         );
     }
 }