ComponentOne List for WinForms
C1.Win.C1List Namespace / C1Combo Class / NotInList Event

In This Topic
    NotInList Event (C1Combo)
    In This Topic
    Fires when the user enters a value in the text portion of a combo box that is not found in the list portion.
    Syntax
    'Declaration
     
    
    Public Event NotInList As NotInListEventHandler
    public event NotInListEventHandler NotInList
    Event Data

    The event handler receives an argument of type NotInListEventArgs containing data related to this event. The following NotInListEventArgs properties provide information specific to this event.

    PropertyDescription
    String representing the text that was entered by the user but not found in the list.  
    True to force the control to requery the list for the new entry.  
    See Also