Xamarin.Forms | ComponentOne
C1.Xamarin.Forms.Input Assembly / C1.Xamarin.Forms.Input Namespace / C1ComboBox Class / TextChanged Event


In This Topic
    TextChanged Event (C1ComboBox)
    In This Topic
    Event raised before the Textproperty changes.
    Syntax
    'Declaration
     
    
    Public Event TextChanged As EventHandler(Of TextChangedEventArgs)
    'Usage
     
    
    Dim instance As C1ComboBox
    Dim handler As EventHandler(Of TextChangedEventArgs)
     
    AddHandler instance.TextChanged, handler
    public event EventHandler<TextChangedEventArgs> TextChanged
    Event Data

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

    PropertyDescription
    Gets the new text in the ComboBox.  
    Gets the old text in the ComboBox.  
    See Also