ComponentOne FlexGrid for WPF and Silverlight
CellEditEnded Event (C1FlexGrid)

C1.Silverlight.FlexGrid Namespace > C1FlexGrid Class : CellEditEnded Event
Occurs when a cell edit has been committed or canceled.
Syntax
'Declaration
 
Public Event CellEditEnded As System.EventHandler(Of CellEditEventArgs)
public event System.EventHandler<CellEditEventArgs> CellEditEnded
Event Data

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

PropertyDescription
(Inherited from System.ComponentModel.CancelEventArgs)
Gets a value that determines whether the editing action was canceled.  
CellRange affected by the event. (Inherited from C1.Silverlight.FlexGrid.CellRangeEventArgs)
CellType of the range affected by the event. (Inherited from C1.Silverlight.FlexGrid.CellRangeEventArgs)
Index of the column affected by the event. (Inherited from C1.Silverlight.FlexGrid.CellRangeEventArgs)
Gets the System.Windows.FrameworkElement responsible for editing the cell value.  
GridPanel that contains the range affected by the event. (Inherited from C1.Silverlight.FlexGrid.CellRangeEventArgs)
Index of the row affected by the event. (Inherited from C1.Silverlight.FlexGrid.CellRangeEventArgs)
See Also