TcxCustomEditProperties.OnEditValueChanged Event
Allows you to respond to edit value changes.
Declaration
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