Spread WPF 18
GrapeCity.Wpf.SpreadSheet Namespace / EnterCellEventArgs Class / EnterCellEventArgs Constructor
GcSpreadSheet that contains the cell being entered
Row index of the cell being entered.
Row index of the cell being entered
Column index of the cell being entered


In This Topic
    EnterCellEventArgs Constructor
    In This Topic
    Creates a new object with the EnterCell event arguments.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal spread As GcSpreadSheet, _
       ByVal worksheet As IWorksheet, _
       ByVal row As Integer, _
       ByVal column As Integer _
    )
    'Usage
     
    Dim spread As GcSpreadSheet
    Dim worksheet As IWorksheet
    Dim row As Integer
    Dim column As Integer
     
    Dim instance As New EnterCellEventArgs(spread, worksheet, row, column)
    public EnterCellEventArgs( 
       GcSpreadSheet spread,
       IWorksheet worksheet,
       int row,
       int column
    )

    Parameters

    spread
    GcSpreadSheet that contains the cell being entered
    worksheet
    Row index of the cell being entered.
    row
    Row index of the cell being entered
    column
    Column index of the cell being entered
    See Also