RadControls for WinForms

Specifies how a user starts cell editing in the RadGridView control.

Namespace: Telerik.WinControls
Assembly: Telerik.WinControls.GridView (in Telerik.WinControls.GridView.dll) Version: 2013.1.321.40 (2013.1.321.40)

Syntax

C#
public enum RadGridViewBeginEditMode
Visual Basic
Public Enumeration RadGridViewBeginEditMode

Members

Member nameValueDescription
BeginEditOnEnter0 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.
BeginEditOnKeystroke1 Editing begins when any alphanumeric key is pressed while the cell has focus.
BeginEditOnKeystrokeOrF22 Editing begins when any alphanumeric key or F2 is pressed while the cell has focus.
BeginEditOnF23 Editing begins when F2 is pressed while the cell has focus. This mode places the selection point at the end of the cell contents.
BeginEditProgrammatically4 Editing begins only when the RadGridView.BeginEdit(System.Boolean) method is called.

See Also