Spread WPF 17
GrapeCity.Windows.SpreadSheet.UI Namespace / GcSpreadSheet Class / ExcelError Event


In This Topic
    ExcelError Event (GcSpreadSheet)
    In This Topic
    Occurs when an error occurs during loading or saving an Excel-formatted file.
    Syntax
    'Declaration
     
    Public Event ExcelError As EventHandler(Of ExcelErrorEventArgs)
    'Usage
     
    Dim instance As GcSpreadSheet
    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.

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