Spread WPF 17
GrapeCity.Excel Namespace / ExcelWarning Class / ExcelWarning Constructor / ExcelWarning Constructor(String,ExcelWarningCode,Int32,Int32,Int32,Exception)
Error message
The error code used to specify error category
The zero based sheet index.
The zero based row index
The zero based column index
the actual exception occurred in Excel IE component.


In This Topic
    ExcelWarning Constructor(String,ExcelWarningCode,Int32,Int32,Int32,Exception)
    In This Topic
    Constructor -- internal use only
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal message As String, _
       ByVal code As ExcelWarningCode, _
       ByVal sheet As Integer, _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal exception As Exception _
    )
    'Usage
     
    Dim message As String
    Dim code As ExcelWarningCode
    Dim sheet As Integer
    Dim row As Integer
    Dim column As Integer
    Dim exception As Exception
     
    Dim instance As New ExcelWarning(message, code, sheet, row, column, exception)
    public ExcelWarning( 
       string message,
       ExcelWarningCode code,
       int sheet,
       int row,
       int column,
       Exception exception
    )

    Parameters

    message
    Error message
    code
    The error code used to specify error category
    sheet
    The zero based sheet index.
    row
    The zero based row index
    column
    The zero based column index
    exception
    the actual exception occurred in Excel IE component.
    See Also