LeaveCellEventArgs Constructor
In This Topic
Creates a new object with the LeaveCell event arguments.
Syntax
'Declaration
Public Function New( _
ByVal As GcSpreadSheet, _
ByVal As IWorksheet, _
ByVal As Integer, _
ByVal column As Integer, _
ByVal As Integer, _
ByVal newColumn As Integer _
)
'Usage
Dim spread As GcSpreadSheet
Dim worksheet As IWorksheet
Dim row As Integer
Dim column As Integer
Dim newRow As Integer
Dim newColumn As Integer
Dim instance As New LeaveCellEventArgs(spread, worksheet, row, column, newRow, newColumn)
Parameters
- spread
- GcSpreadSheet with the cell being left
- worksheet
- Row index of 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