Specifies how a user starts cell editing in the RadGridView control.
Definition
Namespace:Telerik.WinControls
Assembly:Telerik.WinControls.GridView.dll
Syntax:
C#
public enum RadGridViewBeginEditMode
Fields
Editing begins when ENTER key is pressed while the cell has focus.
C#
BeginEditOnEnter = 0
Editing begins when F2 is pressed while the cell has focus. This mode places the selection point at the end of the cell contents.
C#
BeginEditOnF2 = 3
Editing begins when any alphanumeric key is pressed while the cell has focus.
C#
BeginEditOnKeystroke = 1
Editing begins when any alphanumeric key or F2 is pressed while the cell has focus (default value).
C#
BeginEditOnKeystrokeOrF2 = 2
Editing begins only when the RadGridView.BeginEdit(System.Boolean) method is called.
C#
BeginEditProgrammatically = 4