Skip to main content

TcxCustomCheckListBox.OnEditValueChanged Event

Occurs on changing the control’s EditValue property.

Declaration

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