'Declaration
Public Event PrintPreviewShowing As PrintPreviewShowingEventHandler
'Usage
Dim instance As FpSpread Dim handler As PrintPreviewShowingEventHandler AddHandler instance.PrintPreviewShowing, handler
public event PrintPreviewShowingEventHandler PrintPreviewShowing
Event Data
The event handler receives an argument of type PrintPreviewShowingEventArgs containing data related to this event. The following PrintPreviewShowingEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | Gets or sets whether to cancel the print preview. |
PreviewControl | Gets the control associated with the print preview dialog. |
PreviewDialog | Gets the print preview dialog to be displayed. |
See Also