Constructor -- internal use only
Syntax
'Declaration
Public Function New( _
ByVal As System.String, _
ByVal As ExcelWarningCode, _
ByVal As System.Integer, _
ByVal As System.Integer, _
ByVal column As System.Integer, _
ByVal As System.Exception _
)
'Usage
Dim message As System.String
Dim code As ExcelWarningCode
Dim sheet As System.Integer
Dim row As System.Integer
Dim column As System.Integer
Dim exception As System.Exception
Dim instance As New ExcelWarning(message, code, sheet, row, column, exception)
public ExcelWarning(
System.string ,
ExcelWarningCode ,
System.int ,
System.int ,
System.int column,
System.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