Spread Silverlight Documentation
EditChange Event (SheetView)


GrapeCity.Windows.SpreadSheet.UI Namespace > SheetView Class : EditChange Event
Occurs when a cell is in edit mode and the text is changed.
Syntax
'Declaration
 
Public Event EditChange As System.EventHandler(Of EditCellEventArgs)
'Usage
 
Dim instance As SheetView
Dim handler As System.EventHandler(Of EditCellEventArgs)
 
AddHandler instance.EditChange, handler
public event System.EventHandler<EditCellEventArgs> EditChange
Event Data

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

PropertyDescription
Gets the cell column index.  
Gets the cell row index.  
See Also