Skip to main content

TcxCustomGridTableView.OnEditKeyUp Event

Occurs when an end-user releases a key while a cell editor is active.

Declaration

property OnEditKeyUp: TcxGridEditKeyEvent read; write;

Remarks

This event fires after the OnEditKeyDown and OnEditKeyPress events are generated, and enables you to perform specific actions before the key release is processed by the currently active cell editor.

The Sender parameter references the View.

The AItem parameter identifies the grid item whose value is being edited.

The AEdit parameter references a cell editor.

The Key parameter specifies the key being released. You can pass 0 to this parameter to prevent the key release from being processed.

The Shift parameter determines the state of the mouse buttons and the Alt, Ctrl, and Shift keys.

See Also