LeaveCellEventArgs Constructor
In This Topic
Creates a new object with the LeaveCell event arguments.
Syntax
'Declaration
Public Function New( _
ByVal As SpreadView, _
ByVal As Integer, _
ByVal column As Integer, _
ByVal As Integer, _
ByVal newColumn As Integer _
)
'Usage
Dim view As SpreadView
Dim row As Integer
Dim column As Integer
Dim newRow As Integer
Dim newColumn As Integer
Dim instance As New LeaveCellEventArgs(view, row, column, newRow, newColumn)
public LeaveCellEventArgs(
SpreadView ,
int ,
int column,
int ,
int newColumn
)
Parameters
- view
- View with the cell being left
- row
- Row index of the cell being left
- column
- Column index of the cell being left
- newRow
- Row index of the cell being entered
- newColumn
- Column index of the cell being entered
See Also