Specifies how a user starts cell editing in the RadVirtualGrid control.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.GridView.dll
Syntax:
C#
public enum RadVirtualGridBeginEditMode
Fields
Editing begins when the cell receives focus. This mode is useful when pressing the TAB key to enter values across a row, or when pressing the ENTER key to enter values down a column.
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 RadVirtualGrid.BeginEdit() method is called.
C#
BeginEditProgrammatically = 4