Spread WinForms 15
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / FpSpread Class / Error Event


Error Event (FpSpread)
Occurs when the user performs an invalid operation.
Syntax
'Declaration
 
Public Event Error As ErrorEventHandler
 
'Usage
 
Dim instance As FpSpread
Dim handler As ErrorEventHandler
 
AddHandler instance.Error, handler
Event Data

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

PropertyDescription
Gets or sets whether to cancel default processing and throw exceptions or the EditError event.  
Gets the column index of the cell with the editor that raised the event.  
Gets the right column index that raised the event.  
Gets the type of edit error.  
Gets the text description of the error.  
Gets the exception thrown by the error.  
Determines whether the error is an editing error.  
Gets the row index of the cell with the editor that raised the event.  
Gets the bottom row index of the cell that raised the event.  
Gets the view that contains the cell with the editor that raised the event.  
See Also