Skip to main content
Version: 3.5

DataGridViewEditMode

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Specifies how a user starts cell editing in the DataGridView control.

public enum DataGridViewEditMode : Enum

Fields

NameDescription
EditOnEnterEditing 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.
EditOnF2Editing begins when F2 is pressed while the cell has focus. This mode places the selection point at the end of the cell contents.
EditOnKeystrokeEditing begins when any alphanumeric key is pressed while the cell has focus.
EditOnKeystrokeOrF2Editing begins when any alphanumeric key or F2 is pressed while the cell has focus.
EditProgrammaticallyEditing begins only when the BeginEdit method is called.

Used By

NameDescription
DataGridView.EditModeReturns or sets a value indicating how to begin editing a cell.