Enum
RadVirtualGridBeginEditMode

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.

Declaration

cs-api-definition
BeginEditOnEnter = 0

Field Value

RadVirtualGridBeginEditMode

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.

Declaration

cs-api-definition
BeginEditOnF2 = 3

Field Value

RadVirtualGridBeginEditMode

BeginEditOnKeystroke

Editing begins when any alphanumeric key is pressed while the cell has focus.

Declaration

cs-api-definition
BeginEditOnKeystroke = 1

Field Value

RadVirtualGridBeginEditMode

BeginEditOnKeystrokeOrF2

Editing begins when any alphanumeric key or F2 is pressed while the cell has focus (default value).

Declaration

cs-api-definition
BeginEditOnKeystrokeOrF2 = 2

Field Value

RadVirtualGridBeginEditMode

BeginEditProgrammatically

Editing begins only when the RadVirtualGrid.BeginEdit() method is called.

Declaration

cs-api-definition
BeginEditProgrammatically = 4

Field Value

RadVirtualGridBeginEditMode