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 As SpreadView, _
ByVal As Integer, _
ByVal column As Integer, _
ByVal 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 ,
int ,
int column,
int ,
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