New to Telerik UI for WPFStart a free 30-day trial

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

Definition

Namespace:Telerik.Windows.Controls.VirtualGrid

Assembly:Telerik.Windows.Controls.VirtualGrid.dll

Syntax:

C#
[Flags]
public enum VirtualGridEditTriggers

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 VirtualGridCell into edit mode.

C#
None = 1

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

C#
TextInput = 16