BeforeTextChanged Method (AutoCompleteTextWatcher)
In This Topic
Calls before text is changed.
Syntax
'Declaration
Public Sub BeforeTextChanged( _
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 count As Integer
Dim after As Integer
instance.BeforeTextChanged(s, start, count, after)
public void BeforeTextChanged(
Java.Lang.ICharSequence ,
int ,
int ,
int
)
Parameters
- s
- The changed text.
- start
- The start index.
- count
- The lenth of the changed text.
- after
- The end index.
See Also