DataGridCutPasteHandler EventHandler Method CleanCode C# Libraries v1.2.03 API
A convenience method allowing this class to be used directly as an event handler.

Namespace: CleanCode.Forms
Assembly: CleanCode (in CleanCode.dll) Version: 1.2.3.0 (1.2.03)
Syntax

public void EventHandler(
	Object sender,
	KeyEventArgs e
)
Remarks

This method is just a wrapper around the Process(DataGridView, KeyEventArgs) method to allow it to be used directly as a keydown event handler. Thus, instead of:
otherDataGridView.KeyDown += new KeyEventHandler(this.otherDictDataGridView_KeyDown);
. . .
private void otherDataGridView_KeyDown(object sender, KeyEventArgs e)
{
    DataGridCutPasteHandler.Process((DataGridView)sender, e);
}
otherDataGridView.KeyDown += new KeyEventHandler(DataGridCutPasteHandler.EventHandler);
you could just do this:
See Also