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

In This Topic
    Mismatch 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 Mismatch As MismatchEventHandler
    public event MismatchEventHandler Mismatch
    Event Data

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

    PropertyDescription
    String representing the text that was entered by the user but not found in the list.  
    False to prevent the current row from moving back to the top of the list when a mismatch has been typed.  
    See Also