/// <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 ); }
/// <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 ); }
/// <summary> /// Removes the reports page footer /// </summary> public void RemovePageFooter() { this.PageFooter = null; }
/// <summary> /// Removes the reports footer /// </summary> public void RemoveReportFooter() { this.ReportFooter = null; }
/// <summary> /// Removes the reports header /// </summary> public void RemoveReportHeader() { this.ReportHeader = null; }
/// <summary> /// Removes the reports page header /// </summary> public void RemovePageHeader() { this.PageHeader = null; }