Occurs after the section has been rendered to the page.
[Visual Basic]
Public Event AfterPrint() As EventHandler
[C#]
public event 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#]
Private void ReportHeader_AfterPrint(object sender, System.EventArgs eArgs) |
[Visual Basic]
Private Sub ReportHeader_AfterPrint(ByVal sender As Object, ByVal e As System.EventArgs) Handles GroupHeader1.AfterPrint |
Section Class | Section Members | BeforePrint | Format
Copyright © 2004-2005 Data Dynamics, Ltd. All rights reserved.