Spread Windows Forms 17
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / EnterCellEventArgs Class / EnterCellEventArgs Constructor
View that contains 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 view As SpreadView, _
       ByVal row As Integer, _
       ByVal column As Integer _
    )
    'Usage
     
    
    Dim view As SpreadView
    Dim row As Integer
    Dim column As Integer
     
    Dim instance As New EnterCellEventArgs(view, row, column)
    public EnterCellEventArgs( 
       SpreadView view,
       int row,
       int column
    )

    Parameters

    view
    View that contains the cell being entered
    row
    Row index of the cell being entered
    column
    Column index of the cell being entered
    See Also