'Declaration Public Event LeaveCell As EventHandler(Of LeaveCellEventArgs)
'Usage Dim instance As GcSpreadSheet Dim handler As EventHandler(Of LeaveCellEventArgs) AddHandler instance.LeaveCell, handler
public event EventHandler<LeaveCellEventArgs> LeaveCell
Event Data
The event handler receives an argument of type LeaveCellEventArgs containing data related to this event. The following LeaveCellEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | Gets or sets whether to cancel the cell navigation. |
Column | Gets the column index of the cell being left. |
Handled | (Inherited from System.Windows.RoutedEventArgs) |
NewColumn | Gets the column index of the cell being entered. |
NewRow | Gets the row index of the cell being entered. |
OriginalSource | (Inherited from System.Windows.RoutedEventArgs) |
RoutedEvent | (Inherited from System.Windows.RoutedEventArgs) |
Row | Gets the row index index of the cell being left. |
Source | (Inherited from System.Windows.RoutedEventArgs) |
Worksheet | Gets the worksheet of the cell being left. |
See Also