DataGridViewTextBoxCell.KeyEntersEditMode(KeyEventArgs) Method         
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Determines if edit mode should be started based on the given key.
public:
 override bool KeyEntersEditMode(System::Windows::Forms::KeyEventArgs ^ e);public override bool KeyEntersEditMode(System.Windows.Forms.KeyEventArgs e);override this.KeyEntersEditMode : System.Windows.Forms.KeyEventArgs -> boolPublic Overrides Function KeyEntersEditMode (e As KeyEventArgs) As BooleanParameters
A KeyEventArgs that represents the key that was pressed.
Returns
true if edit mode should be started; otherwise, false.
Remarks
When the EditMode property of the DataGridView control is set to EditOnKeystroke or EditOnKeystrokeOrF2, the control uses this method to determine whether a key other than F2 that is pressed by the user while this cell has focus will cause the cell to enter edit mode.
This method returns true if the e parameter indicates an ordinary data-entry key (such as a letter, number, punctuation mark, or the SPACE key) unmodified by ALT or CTRL, excluding SHIFT+SPACE, which is used by the control for selection purposes. For more information, see Default Keyboard and Mouse Handling in the Windows Forms DataGridView Control.