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

TcxCustomEditProperties.OnEditValueChanged Event

In This Article

Allows you to respond to edit value changes.

#Declaration

Delphi
property OnEditValueChanged: TNotifyEvent read; write;

#Remarks

You can handle the OnEditValueChanged event to execute custom code when the editor’s EditValue property value changes.

Use the Sender parameter within an OnEditValueChanged event handler to access the editor that raised the event. To access all public API members of the editor, cast the Sender property value to the corresponding TcxCustomEdit class descendant. You can call the Sender.ClassName function to identify the actual editor class.

See Also