'Declaration Public Event ExcelError As EventHandler(Of ExcelErrorEventArgs)
'Usage Dim instance As Workbook Dim handler As EventHandler(Of ExcelErrorEventArgs) AddHandler instance.ExcelError, handler
public event 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.
Property | Description |
---|---|
ExcelWarning | An ExcelWarning instance used to provide error details. |
See Also