'Declaration Public Property EditTriggers As EditTriggers
'Usage Dim instance As Row Dim value As EditTriggers instance.EditTriggers = value value = instance.EditTriggers
public EditTriggers EditTriggers {get; set;}
Property Value
An EditTriggers value indicating what triggers will cause cells to enter edit mode. By default, EditTriggers.BeginInitCommand, ClickOnCurrentCell, and ActivationGesture.
| Member | Description |
|---|---|
| None | No special triggers will cause cells to enter edit mode. |
| BeginEditCommand | Cells will enter edit mode when the Edit Command (default F2) is sent to the containing DataRow. |
| ClickOnCurrentCell | The current cell will enter edit mode when it is clicked. |
| SingleClick | Cells will enter edit mode when it is clicked. |
| CellIsCurrent | A cell will enter edit mode when it becomes current. |
| ActivationGesture | Cells will enter edit mode when the user performs the appropriate activation gesture for the current cell's editor. |
| RowIsCurrent | All cells in a row will enter edit mode when the row becomes current. |