Spread for ASP.NET 12 Product Documentation
PrintSheet Event


FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > FpSpread Class : PrintSheet Event
Occurs when a sheet is printed.
Syntax
'Declaration
 
Public Event PrintSheet As PrintEventHandler
'Usage
 
Dim instance As FpSpread
Dim handler As PrintEventHandler
 
AddHandler instance.PrintSheet, handler
public event PrintEventHandler PrintSheet
Event Data

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

PropertyDescription
Gets or sets the HTML content for the header or the footer of the sheet. For the header, the default is the sheet name. For the footer, the default is an empty string.  
Gets whether to print the sheet header.  
Gets or sets whether to include a page break.  
Gets the row index.  
Gets the index of the sheet to print.  
Gets or sets whether to skip printing this sheet.  
See Also