Spread Windows Forms 17
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / UserFormulaEnteredEventArgs Class / UserFormulaEnteredEventArgs Constructor / UserFormulaEnteredEventArgs Constructor(SpreadView,Int32,Int32,Int32,Int32)
View that contains the user created formula
Top row index of the cell in which the user entered a formula
Left column index of the cell in which the user entered a formula
Bottom row index of the cell in which the user entered a formula
Right column index of the cell in which the user entered a formula


In This Topic
    UserFormulaEnteredEventArgs Constructor(SpreadView,Int32,Int32,Int32,Int32)
    In This Topic
    Creates a new object with the UserFormulaEntered event arguments.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal view As SpreadView, _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal row2 As Integer, _
       ByVal column2 As Integer _
    )
    'Usage
     
    
    Dim view As SpreadView
    Dim row As Integer
    Dim column As Integer
    Dim row2 As Integer
    Dim column2 As Integer
     
    Dim instance As New UserFormulaEnteredEventArgs(view, row, column, row2, column2)
    public UserFormulaEnteredEventArgs( 
       SpreadView view,
       int row,
       int column,
       int row2,
       int column2
    )

    Parameters

    view
    View that contains the user created formula
    row
    Top row index of the cell in which the user entered a formula
    column
    Left column index of the cell in which the user entered a formula
    row2
    Bottom row index of the cell in which the user entered a formula
    column2
    Right column index of the cell in which the user entered a formula
    See Also