GrapeCity.Wpf.SpreadSheet Namespace / GcSpreadSheet Class / EnterCell Event


EnterCell Event
Syntax
'Declaration
 
Public Event EnterCell As EventHandler(Of EnterCellEventArgs)
 
'Usage
 
Dim instance As GcSpreadSheet
Dim handler As EventHandler(Of EnterCellEventArgs)
 
AddHandler instance.EnterCell, handler
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 column index of the cell being entered.  
(Inherited from System.Windows.RoutedEventArgs)
(Inherited from System.Windows.RoutedEventArgs)
(Inherited from System.Windows.RoutedEventArgs)
Gets the row index of the cell being entered.  
(Inherited from System.Windows.RoutedEventArgs)
Gets the worksheet of the cell being entered.  
See Also