New to Telerik UI for WinForms? Download free 30-day trial

API

The editing process can be controlled by using the following methods:

  • BeginEdit: Puts the current cell in edit mode.

  • EndEdit: Ends the edit operation on the current cell and commits any changes in the underlying data source.

  • CloseEditor: Ends the edit operation on the current cell without committing the changes in the underlying data source.

  • CancelEdit: Closes the currently active editor and discards all changes.

  • ActiveEditor: This property contains reference to the currently active editor.

  • IsInEditMode: This property indicates whether the grid is in edit mode.

All editors used in RadGridView inherit from BaseGridEditor class. This class does not inherit from RadElement. You should use its EditorElement property if you want to customize any element properties.

See Also

In this article