ActiveReports3 Request technical support
ReportInfo Class
See Also  Members   Example 


The ReportInfo control displays the information specified in the FormatString property.

Object Model


Syntax

Visual Basic (Declaration) 
Public NotInheritable Class ReportInfo 
   Inherits ARControl
Visual Basic (Usage)Copy Code
Dim instance As ReportInfo
C# 
public sealed class ReportInfo : ARControl 

Example

C#Copy Code
private void detail_Format(object sender, System.EventArgs eArgs)  
{  
   
this.reportInfo1.Font = New System.Drawing.Font("Arial", 10.0!)
   
this.reportInfo1.FormatString = "Page {PageNumber} of {PageCount} on {RunDateTime}"  
}
Visual BasicCopy Code
Private Sub Detail1_Format(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Detail1.Format
    Me.ReportInfo1.Font = New System.Drawing.Font("Arial", 10.0!)
    Me.ReportInfo1.FormatString = "Page {PageNumber} of {PageCount} on {RunDateTime}"
End Sub

Remarks

Included format strings supply Page N of M and report run date information.

Inheritance Hierarchy

System.Object
   DataDynamics.ActiveReports.ARControl
      DataDynamics.ActiveReports.ReportInfo

See Also