Spread Silverlight Documentation
UserFormulaEntered Event (SheetView)


GrapeCity.Windows.SpreadSheet.UI Namespace > SheetView Class : UserFormulaEntered Event
Occurs when the user types a formula.
Syntax
'Declaration
 
Public Event UserFormulaEntered As System.EventHandler(Of UserFormulaEnteredEventArgs)
'Usage
 
Dim instance As SheetView
Dim handler As System.EventHandler(Of UserFormulaEnteredEventArgs)
 
AddHandler instance.UserFormulaEntered, handler
public event System.EventHandler<UserFormulaEnteredEventArgs> 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.

PropertyDescription
Gets the column index of the cell in which the user entered a formula.  
Gets the formula that the user entered.  
Gets the row index of the cell in which the user entered a formula.  
See Also