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 As Java.Lang.ICharSequence, _
ByVal As Integer, _
ByVal As Integer, _
ByVal 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 ,
int ,
int ,
int
)
Parameters
- s
- The changed text.
- start
- The start index.
- before
- The old text lenth.
- count
- The new text lenth.
See Also