DataGridView.ProcessDeleteKey Method (Keys)
Processes the DELETE key.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
<SecurityPermissionAttribute(SecurityAction.LinkDemand, Flags := SecurityPermissionFlag.UnmanagedCode)> Protected Function ProcessDeleteKey ( 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 |
|---|---|
| Exception | The DELETE key would delete one or more rows, but an error in the data source prevents the deletion and either there is no handler for the DataError event or the handler has set the DataGridViewDataErrorEventArgs.ThrowException property to true. |
This method returns true when the user presses DELETE to delete rows in the control. The user can delete rows if the SelectionMode property is set to FullRowSelect or RowHeaderSelect and the MultiSelect property is set to true. If the DataGridView is bound to data, the IBindingList.AllowRemove property of the data source must also be set to true.
for calling unmanaged code. Demand value: LinkDemand. Permission value: UnmanagedCode
Available since 2.0