Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxCustomGridTableView.OnEditKeyUp Event

In This Article

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

#Declaration

Delphi
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