EnumRadVirtualGridBeginEditMode
Enum
Specifies how a user starts cell editing in the RadVirtualGrid control.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.GridView.dll
Syntax:
cs-api-definition
public enum RadVirtualGridBeginEditMode
Fields
BeginEditOnEnter
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.
BeginEditOnF2
Editing begins when F2 is pressed while the cell has focus. This mode places the selection point at the end of the cell contents.
BeginEditOnKeystroke
Editing begins when any alphanumeric key is pressed while the cell has focus.
BeginEditOnKeystrokeOrF2
Editing begins when any alphanumeric key or F2 is pressed while the cell has focus (default value).
BeginEditProgrammatically
Editing begins only when the RadVirtualGrid.BeginEdit() method is called.