Fired when the control finishes rendering the report.
Namespace:
C1.C1ReportAssembly: C1.C1Report.2 (in C1.C1Report.2.dll)
Syntax
C# |
---|
public event EventHandler EndReport |
Visual Basic |
---|
Public Event EndReport As EventHandler |
Examples
The following example shows "Ready" in the status bar when the report is done rendering:
Copy CodeVisual Basic
Private Sub c1r_EndReport(ByVal sender As System.Object, ByVal e As System.EventArgs)Handles c1r.EndReport status.Text = "Ready" End Sub |
Copy CodeC#
private void c1r_EndReport(object sender, System.EventArgs e) { status.Text = "Ready"; } |