Spread Windows Forms 15.0
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / UserFormulaEnteredEventArgs Class / UserFormulaEnteredEventArgs Constructor
View that contains the user created formula
Row index of the cell in which the user entered a formula
Column index of the cell in which the user entered a formula


In This Topic
    UserFormulaEnteredEventArgs Constructor
    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 _
    )
    'Usage
     
    
    Dim view As SpreadView
    Dim row As Integer
    Dim column As Integer
     
    Dim instance As New UserFormulaEnteredEventArgs(view, row, column)
    public UserFormulaEnteredEventArgs( 
       SpreadView view,
       int row,
       int column
    )

    Parameters

    view
    View that contains the user created formula
    row
    Row index of the cell in which the user entered a formula
    column
    Column index of the cell in which the user entered a formula
    See Also