[]
Creates a new object with the Error event arguments.
public ErrorEventArgs(SpreadView view, bool isEditError, EditError editError, int row, int column, string errorMessage, Exception exception)
Public Sub New(view As SpreadView, isEditError As Boolean, editError As EditError, row As Integer, column As Integer, errorMessage As String, exception As Exception)
Type | Name | Description |
---|---|---|
SpreadView | view | View that contains the cell with the editor that raised the event |
bool | isEditError | Whether the error occured in the editing of the control |
EditError | editError | Type of edit error |
int | row | Row index of the cell with the editor that raised the event |
int | column | Column index of the cell with the editor that raised the event |
string | errorMessage | Text describing the error |
Exception | exception | Exception being thrown |
Creates a new object with the Error event arguments.
public ErrorEventArgs(SpreadView view, bool isEditError, EditError editError, int row, int column, int row2, int column2, string errorMessage, Exception exception)
Public Sub New(view As SpreadView, isEditError As Boolean, editError As EditError, row As Integer, column As Integer, row2 As Integer, column2 As Integer, errorMessage As String, exception As Exception)
Type | Name | Description |
---|---|---|
SpreadView | view | View that contains the cell with the editor that raised the event |
bool | isEditError | Whether the error occured in the editing of the control |
EditError | editError | Type of edit error |
int | row | The top row index of the cell that raised the event |
int | column | The left column index of the cell that raised the event |
int | row2 | Bottom Row index of the cell that raised the event |
int | column2 | The right column index of the cell that raised the event |
string | errorMessage | Text describing the error |
Exception | exception | Exception being thrown |