Enum
GridViewEditTriggers

Defines what kind of action should put GridViewCell into edit mode.

Definition

Namespace:Telerik.Windows.Controls.GridView

Assembly:Telerik.Windows.Controls.GridView.dll

Syntax:

cs-api-definition
[Flags]
public enum GridViewEditTriggers

Fields

CellClick

Denotes that Single click on a cell will put it into edit mode.

Declaration

cs-api-definition
CellClick = 2

Field Value

GridViewEditTriggers

CurrentCellClick

Denotes that click on a current cell will put it into edit mode.

Declaration

cs-api-definition
CurrentCellClick = 4

Field Value

GridViewEditTriggers

Default

Combines default values.

Declaration

cs-api-definition
Default = CurrentCellClick | F2 | TextInput

Field Value

GridViewEditTriggers

F2

Denotes that F2 key on a cell will put it into edit mode.

Declaration

cs-api-definition
F2 = 8

Field Value

GridViewEditTriggers

None

Denotes that no action will put GridViewCell into edit mode.

Declaration

cs-api-definition
None = 1

Field Value

GridViewEditTriggers

TextInput

Denotes that any text input key will put a cell into edit mode.

Declaration

cs-api-definition
TextInput = 16

Field Value

GridViewEditTriggers