Spread for ASP.NET 11 Product Documentation
PrintBackground Event
Example 


FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > FpSpread Class : PrintBackground Event
Occurs before each page is printed.
Syntax
'Declaration
 
Public Event PrintBackground As PrintBackgroundEventHandler
'Usage
 
Dim instance As FpSpread
Dim handler As PrintBackgroundEventHandler
 
AddHandler instance.PrintBackground, handler
public event PrintBackgroundEventHandler PrintBackground
Event Data

The event handler receives an argument of type PrintBackgroundEventArgs containing data related to this event. The following PrintBackgroundEventArgs properties provide information specific to this event.

PropertyDescription
Gets or sets the graphics device that does the printing.  
Gets or sets the current page being printed.  
Gets or sets the rectangle area representing the sheet.  
Example
This example uses the PrintBackground event.
protected void FpSpread1_PrintBackground(object sender, FarPoint.Web.Spread.PrintBackgroundEventArgs e)
        {
            ListBox1.Items.Add(e.PageNumber.ToString());
        }
Protected Sub FpSpread1_PrintBackground(sender As Object, e As FarPoint.Web.Spread.PrintBackgroundEventArgs) Handles FpSpread1.PrintBackground
      ListBox1.Items.Add(e.PageNumber.ToString())
End Sub
See Also