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


In This Topic
    Change Event
    In This Topic
    Occurs after the user modifies data in a cell.
    Syntax
    'Declaration
     
    
    Public Event Change As ChangeEventHandler
    'Usage
     
    
    Dim instance As FpSpread
    Dim handler As ChangeEventHandler
     
    AddHandler instance.Change, handler
    public event ChangeEventHandler Change
    Event Data

    The event handler receives an argument of type ChangeEventArgs containing data related to this event. The following ChangeEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets the column index of the cell that is changed.  
    Gets the row index of the cell that is changed.  
    Gets the view that contains the cell that is changed.  
    See Also