ActiveReports 6 Online Help
ReportFooter Class
Members  Example 

The ReportFooter section prints once at the end of the report.
Object Model
ReportFooter ClassControlCollection ClassARControl Class
Syntax
'Declaration
 
Public Class ReportFooter 
   Inherits Section
public class ReportFooter : Section 
Remarks
Use this section to print the summary of the report and include any grand summary calculations.
Example
private void ReportFooter_Format(object sender, System.EventArgs eArgs)
{
    this.reportFooter1.KeepTogether = true;
    this.reportFooter1.NewPage = NewPage.None;
    this.reportFooter1.PrintAtBottom = true;
}
Private Sub ReportFooter_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles ReportFooter.Format
    Me.ReportFooter.KeepTogether = True
    Me.ReportFooter.NewPage = NewPage.None
    Me.ReportFooter.PrintAtBottom = True
End Sub
Inheritance Hierarchy

System.Object
   DataDynamics.ActiveReports.Section
      DataDynamics.ActiveReports.ReportFooter

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

ReportFooter Members
DataDynamics.ActiveReports Namespace

Send Feedback