Spread Windows Forms 12.0 Product Documentation
PrintAbort Event
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > FpSpread Class : PrintAbort Event
Occurs continually as printing occurs in order to give the user the opportunity to discontinue a print job.
Syntax
'Declaration
 
Public Event PrintAbort As PrintAbortEventHandler
'Usage
 
Dim instance As FpSpread
Dim handler As PrintAbortEventHandler
 
AddHandler instance.PrintAbort, handler
public event PrintAbortEventHandler PrintAbort
Event Data

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

PropertyDescription
Gets or sets whether to discontinue the print job.  
Remarks

This event is raised by the OnPrintAbort method when the user cancels the print job.

If you have the PrintInfo.AbortMessage property set, a message box appears with that message.

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

Example
This example raises the PrintAbort event when the printing job is cancelled.
private void menu_Click(object sender, System.EventArgs e)
{
     FarPoint.Win.Spread.PrintInfo pi = new FarPoint.Win.Spread.PrintInfo();
     pi.AbortMessage = "Abort Printing?";
     fpSpread1.SetPrintInfo(pi,0);
     fpSpread1.PrintSheet(0);
}

private void fpSpread1_PrintAbort(object sender, FarPoint.Win.Spread.PrintAbortEventArgs e)
{
     ListBox1.Items.Add("PrintAbort event fired!");    
}
Private Sub Menu_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuItem23.Click
     Dim pi As New FarPoint.Win.Spread.PrintInfo()
     pi.AbortMessage = "Abort Printing?"
     FpSpread1.SetPrintInfo(pi, 0)
     FpSpread1.PrintSheet(0)
End Sub

Private Sub FpSpread1_PrintAbort(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.PrintAbortEventArgs) Handles FpSpread1.PrintAbort
     ListBox1.Items.Add("PrintAbort event fired!")
End Sub
See Also