Spread Silverlight Documentation
EnterCell Event (SheetView)


GrapeCity.Windows.SpreadSheet.UI Namespace > SheetView Class : EnterCell Event
Occurs when the user enters a cell.
Syntax
'Declaration
 
Public Event EnterCell As System.EventHandler(Of EnterCellEventArgs)
'Usage
 
Dim instance As SheetView
Dim handler As System.EventHandler(Of EnterCellEventArgs)
 
AddHandler instance.EnterCell, handler
public event System.EventHandler<EnterCellEventArgs> EnterCell
Event Data

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

PropertyDescription
Gets the row index of the cell being entered.  
Gets the column index of the cell being entered.  
See Also