Spread Silverlight Documentation
ExcelError Event (Workbook)


GrapeCity.Windows.SpreadSheet.Data Namespace > Workbook Class : ExcelError Event
Occurs when an error happens while loading or saving Excel-formatted files.
Syntax
'Declaration
 
Public Event ExcelError As System.EventHandler(Of ExcelErrorEventArgs)
'Usage
 
Dim instance As Workbook
Dim handler As System.EventHandler(Of ExcelErrorEventArgs)
 
AddHandler instance.ExcelError, handler
public event System.EventHandler<ExcelErrorEventArgs> ExcelError
Event Data

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

PropertyDescription
An ExcelWarning instance used to provide error details.  
See Also