Spread Windows Forms 15.0
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / FpSpread Class / UserFormulaEntered Event


In This Topic
    UserFormulaEntered Event
    In This Topic
    Occurs when the user types a formula.
    Syntax
    '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.

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