Spread WPF 18
GrapeCity.Wpf.SpreadSheet Namespace / LeaveCellEventArgs Class / LeaveCellEventArgs Constructor
GcSpreadSheet with the cell being left
Row index of the cell being left
Row index of the cell being left
Column index of the cell being left
Row index of the cell being entered
Column index of the cell being entered


In This Topic
    LeaveCellEventArgs Constructor
    In This Topic
    Creates a new object with the LeaveCell event arguments.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal spread As GcSpreadSheet, _
       ByVal worksheet As IWorksheet, _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal newRow 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)
    public LeaveCellEventArgs( 
       GcSpreadSheet spread,
       IWorksheet worksheet,
       int row,
       int column,
       int newRow,
       int 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