ActiveReports 6 Online Help
AfterPrint Event
Example 

Occurs after the section has been rendered to the page.
Syntax
'Declaration
 
Public Event AfterPrint As EventHandler
public event EventHandler AfterPrint
Remarks
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.
Example
Private void reportHeader1_AfterPrint(object sender, System.EventArgs eArgs)
{
    this.CurrentPage.DrawRect(1,1,3,1);
}
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
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

Section Class
Section Members
BeforePrint Event
Format Event

Send Feedback