Defines what kind of action should put GridViewCell into edit mode.
Definition
Namespace:Telerik.Windows.Controls.GridView
Assembly:Telerik.Windows.Controls.GridView.dll
Syntax:
C#
[Flags]
public enum GridViewEditTriggers
Fields
Denotes that Single click on a cell will put it into edit mode.
C#
CellClick = 2
Denotes that click on a current cell will put it into edit mode.
C#
CurrentCellClick = 4
Combines default values.
C#
Default = CurrentCellClick | F2 | TextInput
Denotes that F2 key on a cell will put it into edit mode.
C#
F2 = 8
Denotes that no action will put GridViewCell into edit mode.
C#
None = 1
Denotes that any text input key will put a cell into edit mode.
C#
TextInput = 16