Calls on text is changed.
Syntax
'Declaration
Public Sub OnTextChanged( _
ByVal As Java.Lang.ICharSequence, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer _
)
'Usage
Dim instance As ComboBoxTextWatcher
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 lenth before the text changed.
- count
See Also