Spread WinForms 15
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / FpSpread Class / Change Event


Change Event
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
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