Spread Windows Forms 9.0 Product Documentation
PrintAbort Event
Example 


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
AbortGets 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
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
AbortMessage Property
PrintAbortEventArgs Class

User-Task Documentation

Managing Printing

 

 


Copyright © GrapeCity, inc. All rights reserved.