Base Combo BoxNot In List 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: 2024.12.31.0
Assembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2024.12.31.0
C#
public event CancelEventHandler NotInListVB
Public Event NotInList As CancelEventHandlerC++
public:
event CancelEventHandler^ NotInList {
void add (CancelEventHandler^ value);
void remove (CancelEventHandler^ value);
}F#
member NotInList : IEvent<CancelEventHandler,
CancelEventArgs>Value
CancelEventHandlerRemarks
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.