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

TcxCustomCheckListBox.OnEditValueChanged Event

In This Article

Occurs on changing the control’s EditValue property.

#Declaration

Delphi
property OnEditValueChanged: TNotifyEvent read; write;

#Remarks

The OnEditValueChanged event occurs after changing the control’s edit value. This happens after assigning a new value to the EditValue property (only if AllowGrayed is set to False) or when the state of an item is changed (by the end-user or in your code).

Do not change the edit value in your OnEditValueChanged event handler, as this can result in stack overflow. Use this event to get notification that the edit value has changed.

See Also