BaseComboBoxNotInList Event

This event is raised during the validation phase if the text in the control does not match an item in the list.

Definition

Namespace: EWSoftware.ListControls
Assembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2023.4.9.0
public event CancelEventHandler NotInList

Value

CancelEventHandler

Remarks

This event occurs before the Validating event so that you have a chance to take action on entered text that does not appear in the item list (i.e. add it to the list or reject it). Canceling this event is equivalent to canceling the Validating event. If not canceled, the Validating event is called as usual.

See Also