'Declaration
Public Event UserFormulaEntered As UserFormulaEnteredEventHandler
'Usage
Dim instance As FpSpread Dim handler As UserFormulaEnteredEventHandler AddHandler instance.UserFormulaEntered, handler
public event UserFormulaEnteredEventHandler UserFormulaEntered
Event Data
The event handler receives an argument of type UserFormulaEnteredEventArgs containing data related to this event. The following UserFormulaEnteredEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Column | Gets the column index of the cell in which the user entered a formula. |
Row | Gets the row index of the cell in which the user entered a formula. |
View | Gets the main view in which the user entered a formula. |
See Also