C1.Silverlight.FlexGrid Namespace > C1FlexGrid Class : RowEditEnding Event |
'Declaration Public Event RowEditEnding As System.EventHandler(Of CellEditEventArgs)
public event System.EventHandler<CellEditEventArgs> RowEditEnding
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.
Property | Description |
---|---|
Cancel | (Inherited from System.ComponentModel.CancelEventArgs) |
CancelEdits | Gets a value that determines whether the editing action was canceled. |
CellRange | CellRange affected by the event. (Inherited from C1.Silverlight.FlexGrid.CellRangeEventArgs) |
CellType | CellType of the range affected by the event. (Inherited from C1.Silverlight.FlexGrid.CellRangeEventArgs) |
Column | Index of the column affected by the event. (Inherited from C1.Silverlight.FlexGrid.CellRangeEventArgs) |
Editor | Gets the System.Windows.FrameworkElement responsible for editing the cell value. |
Panel | GridPanel that contains the range affected by the event. (Inherited from C1.Silverlight.FlexGrid.CellRangeEventArgs) |
Row | Index of the row affected by the event. (Inherited from C1.Silverlight.FlexGrid.CellRangeEventArgs) |
You can cancel this event by setting the Cancel property of the event argument to true in the event handler.
If this event is not canceled, the edits will be committed or canceled depending on the setting of the CancelEdits property of the event argument.
After the edit has been successfully committed or canceled, the CellEditEnded event occurs.
By default, you can edit items directly in the grid. To guarantee that edits can be committed and canceled correctly, the objects in the grid must implement the System.ComponentModel.IEditableObject interface.
Alternatively, you can set the IsReadOnly property to true to disable editing in the grid.
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2