BaseComboBoxNotInList Event
This event is raised during the validation phase if the text in the control does not match an item in
the list.
Namespace: EWSoftware.ListControlsAssembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2024.12.18.0+3a863295c73252b22e8ab6862ed6bdc57bcbd0fc
public event CancelEventHandler NotInList
Public Event NotInList As CancelEventHandler
public:
event CancelEventHandler^ NotInList {
void add (CancelEventHandler^ value);
void remove (CancelEventHandler^ value);
}
member NotInList : IEvent<CancelEventHandler,
CancelEventArgs>
Value
CancelEventHandler 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.