ActiveReports3 Request technical support
BeforePrint Event
See Also  Example


Occurs immediately before the section is rendered to the page.

Syntax

Visual Basic (Declaration) 
Public Event BeforePrint() As EventHandler
Visual Basic (Usage)Copy Code
Dim instance As Section
Dim handler As EventHandler
 
AddHandler instance.BeforePrint, handler
C# 
public event EventHandler BeforePrint()

Example

C#Copy Code
private void ghCustomerID_BeforePrint(object sender, System.EventArgs eArgs)
{
   
this.rtf.ReplaceField("TotalOrders",this.txtTotalOrders.Text);
}
Visual BasicCopy Code
Private Sub ghCustomerID_BeforePrint(ByVal sender As Object, ByVal e As System.EventArgs) Handles _ ghCustomerID.BeforePrint
        Me.rtf.ReplaceField("TotalOrders", Me.txtTotalOrders.Text)
End Sub

Remarks

When this event occurs the section layout has been finalized and is ready to render.  Any changes that might affect the size of the section (such as changing the section Height property) will be ignored.

See Also