Visual Basic (Declaration) | |
---|---|
Public Event AfterPrint As System.EventHandler |
C# | |
---|---|
public event System.EventHandler AfterPrint |
This event allows you to draw directly to the canvas after the section has been rendered. It is not recommended to use this event to manage any data or variables because the sequence of the event relative to the other section events is not guaranteed.
C# | Copy Code |
---|---|
Private void reportHeader1_AfterPrint(object sender, System.EventArgs eArgs) { this.CurrentPage.DrawRect(1,1,3,1); } |
Visual Basic | Copy Code |
---|---|
Private Sub ReportHeader1_AfterPrint(ByVal sender As Object, ByVal e As System.EventArgs) Handles ReportHeader1.AfterPrint Me.CurrentPage.DrawRect(1, 1, 3, 1) End Sub |
Reference
Section ClassSection Members
ActiveReports6~GrapeCity.ActiveReports.Section~BeforePrint_EV
ActiveReports6~GrapeCity.ActiveReports.Section~Format_EV