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


In This Topic
    TextChanged Event (C1TextBox)
    In This Topic
    Syntax
    'Declaration
     
    
    Public Event TextChanged As EventHandler(Of TextChangedEventArgs)
    'Usage
     
    
    Dim instance As C1TextBox
    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 Xamarin.Forms.TextChangedEventArgs containing data related to this event. The following TextChangedEventArgs properties provide information specific to this event.

    PropertyDescription
     
     
    See Also