DataGridView.ProcessRightKey Method (Keys)
Processes the RIGHT ARROW key.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
<SecurityPermissionAttribute(SecurityAction.LinkDemand, Flags := SecurityPermissionFlag.UnmanagedCode)> Protected Function ProcessRightKey ( keyData As Keys ) As Boolean
Parameters
- keyData
-
Type:
System.Windows.Forms.Keys
A bitwise combination of Keys values that represents the key or keys to process.
| Exception | Condition |
|---|---|
| InvalidCastException | The RIGHT ARROW key would cause the control to enter edit mode, but the EditType property of the new current cell does not indicate a class that derives from Control and implements IDataGridViewEditingControl. |
| Exception | This action would commit a cell value or enter edit mode, but an error in the data source prevents the action and either there is no handler for the DataError event or the handler has set the DataGridViewDataErrorEventArgs.ThrowException property to true. |
The following code example demonstrates how to change the behavior of the ENTER key in a DataGridView subclass by overriding the ProcessDataGridViewKey and ProcessDialogKey methods. In the example, the ENTER key has the same behavior as the RIGHT ARROW key, making it easier for a user to edit multiple cells in a single row of data.
Public Class CustomDataGridView Inherits DataGridView <System.Security.Permissions.UIPermission( _ System.Security.Permissions.SecurityAction.LinkDemand, _ Window:=System.Security.Permissions.UIPermissionWindow.AllWindows)> _ Protected Overrides Function ProcessDialogKey( _ ByVal keyData As Keys) As Boolean ' Extract the key code from the key value. Dim key As Keys = keyData And Keys.KeyCode ' Handle the ENTER key as if it were a RIGHT ARROW key. If key = Keys.Enter Then Return Me.ProcessRightKey(keyData) End If Return MyBase.ProcessDialogKey(keyData) End Function <System.Security.Permissions.SecurityPermission( _ System.Security.Permissions.SecurityAction.LinkDemand, Flags:= _ System.Security.Permissions.SecurityPermissionFlag.UnmanagedCode)> _ Protected Overrides Function ProcessDataGridViewKey( _ ByVal e As System.Windows.Forms.KeyEventArgs) As Boolean ' Handle the ENTER key as if it were a RIGHT ARROW key. If e.KeyCode = Keys.Enter Then Return Me.ProcessRightKey(e.KeyData) End If Return MyBase.ProcessDataGridViewKey(e) End Function End Class
for calling unmanaged code. Demand value: LinkDemand. Permission value: UnmanagedCode
Available since 2.0