Spread Windows Forms 9.0 Product Documentation
PrintPreviewShowing Event
Example 


Occurs before the preview dialog appears.
Syntax
'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.

PropertyDescription
CancelGets or sets whether to cancel the print preview.  
PreviewControlGets the control associated with the print preview dialog.  
PreviewDialogGets the print preview dialog to be displayed.  
Remarks

This event is raised by the OnPrintPreviewShowing method when the print job is aborted.

For more details on the individual event arguments, refer to PrintPreviewShowingEventArgs members.

Example
This example centers the print preview dialog.
private void fpSpread1_PrintPreviewShowing(object sender, FarPoint.Win.Spread.PrintPreviewShowingEventArgs e) 
{ 
     e.Preview.StartPosition = FormStartPosition.CenterScreen; 
}
Private Sub FpSpread1_PrintPreviewShowing(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.PrintPreviewShowingEventArgs)
Handles FpSpread1.PrintPreviewShowing 
     e.Preview.StartPosition = FormStartPosition.CenterScreen 
End Sub
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

FpSpread Class
FpSpread Members
PrintPreviewShowingEventArgs Class

User-Task Documentation

Managing Printing

 

 


Copyright © GrapeCity, inc. All rights reserved.