Spread Silverlight Documentation
EditEnd Event (SheetView)


GrapeCity.Windows.SpreadSheet.UI Namespace > SheetView Class : EditEnd Event
Occurs when a cell leaves edit mode.
Syntax
'Declaration
 
Public Event EditEnd As System.EventHandler(Of EditCellEventArgs)
'Usage
 
Dim instance As SheetView
Dim handler As System.EventHandler(Of EditCellEventArgs)
 
AddHandler instance.EditEnd, handler
public event System.EventHandler<EditCellEventArgs> EditEnd
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