'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.
Property | Description |
---|---|
Graphics | Gets or sets the graphics device that does the printing. |
PageNumber | Gets or sets the current page being printed. |
SheetRectangle | Gets or sets the rectangular area that represents the sheet. |
See Also