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

TcxCustomEdit.OnEditing Event

In This Article

Occurs when a user tries to modify the edit value.

#Declaration

Delphi
property OnEditing: TcxEditEditingEvent read; write;

#Remarks

When a user enters an editor and initiates the editing operation (presses a key) to modify the edit value, the OnEditing event is generated. By writing an event handler you can enable or disable the following editing. Assigning False to the CanEdit parameter cancels the editing operation. By default, the CanEdit parameter is set to True.

If this sequence of operations succeeds, the editing is enabled; otherwise, user keystrokes are ignored.

See Also