Xamarin.Android | ComponentOne
C1.Android.Input Assembly / C1.Android.Input Namespace / AutoCompleteTextWatcher Class / OnTextChanged Method
The changed text.
The start index.
The old text lenth.
The new text lenth.


In This Topic
    OnTextChanged Method (AutoCompleteTextWatcher)
    In This Topic
    Calls on text is changed. Within s, the count characters beginning at start have just replaced old text that had length before.
    Syntax
    'Declaration
     
    
    Public Sub OnTextChanged( _
       ByVal s As Java.Lang.ICharSequence, _
       ByVal start As Integer, _
       ByVal before As Integer, _
       ByVal count As Integer _
    ) 
    'Usage
     
    
    Dim instance As AutoCompleteTextWatcher
    Dim s As Java.Lang.ICharSequence
    Dim start As Integer
    Dim before As Integer
    Dim count As Integer
     
    instance.OnTextChanged(s, start, before, count)
    public void OnTextChanged( 
       Java.Lang.ICharSequence s,
       int start,
       int before,
       int count
    )

    Parameters

    s
    The changed text.
    start
    The start index.
    before
    The old text lenth.
    count
    The new text lenth.
    See Also