ActiveReports3 Request technical support
ReportFooter Class
See Also  Members   Example 


The ReportFooter section prints once at the end of the report.

Object Model


Syntax

Visual Basic (Declaration) 
Public Class ReportFooter 
   Inherits Section
Visual Basic (Usage)Copy Code
Dim instance As ReportFooter
C# 
public class ReportFooter : Section 

Example

C#Copy Code
private void ReportFooter_Format(object sender, System.EventArgs eArgs)
{
   
this.reportFooter1.KeepTogether = true;
   
this.reportFooter1.NewPage = NewPage.None;
   
this.reportFooter1.PrintAtBottom = true;
}
Visual BasicCopy Code
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

Remarks

Use this section to print the summary of the report and include any grand summary calculations.

Inheritance Hierarchy

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

See Also