Spread Windows Forms 15.0
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / ChangeEventArgs Class / ChangeEventArgs Constructor
Spreadview object that contains the cell that is changed
Row index of the cell that is changed
Column index of the cell that is changed


In This Topic
    ChangeEventArgs Constructor
    In This Topic
    Creates a new object with the Change 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 ChangeEventArgs(view, row, column)
    public ChangeEventArgs( 
       SpreadView view,
       int row,
       int column
    )

    Parameters

    view
    Spreadview object that contains the cell that is changed
    row
    Row index of the cell that is changed
    column
    Column index of the cell that is changed
    See Also