See Also

ReportFooter Members  | DataDynamics.ActiveReports Namespace

Language

Visual Basic

C#

Show All

See Also Languages ActiveReports Send feedback to Data Dynamics

ReportFooter Class

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

For a list of all members of this type, see ReportFooter members.

Object Model


Inheritance Hierarchy

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

Syntax

[Visual Basic]
Public Class ReportFooter    Inherits Section
[C#]
public class ReportFooter : Section

Remarks

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

Example

[C#] 

private void ReportFooter_Format(object sender, System.EventArgs eArgs) 

    this.ReportFooter.KeepTogether = true; 
    this.ReportFooter.NewPage = NewPage.None; 
    this.ReportFooter.PrintAtBottom = true; 
}

[Visual Basic] 

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

See Also

ReportFooter Members  | DataDynamics.ActiveReports Namespace

 

 


Copyright © 2004-2005 Data Dynamics, Ltd. All rights reserved.