AutoCompleteTextView.SetText Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
SetText(ICharSequence, Boolean) |
Like |
SetText(String, Boolean) |
Like |
SetText(ICharSequence, Boolean)
Like #setText(CharSequence)
, except that it can disable filtering.
[Android.Runtime.Register("setText", "(Ljava/lang/CharSequence;Z)V", "GetSetText_Ljava_lang_CharSequence_ZHandler")]
public virtual void SetText (Java.Lang.ICharSequence? text, bool filter);
[<Android.Runtime.Register("setText", "(Ljava/lang/CharSequence;Z)V", "GetSetText_Ljava_lang_CharSequence_ZHandler")>]
override this.SetText : Java.Lang.ICharSequence * bool -> unit
Parameters
- text
- ICharSequence
- filter
- Boolean
If false
, no filtering will be performed
as a result of this call.
- Attributes
Remarks
Like #setText(CharSequence)
, except that it can disable filtering.
Java documentation for android.widget.AutoCompleteTextView.setText(java.lang.CharSequence, boolean)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
SetText(String, Boolean)
Like #setText(CharSequence)
, except that it can disable filtering.
public void SetText (string? text, bool filter);
override this.SetText : string * bool -> unit
Parameters
- text
- String
- filter
- Boolean
If false
, no filtering will be performed
as a result of this call.
Remarks
Like #setText(CharSequence)
, except that it can disable filtering.
Java documentation for android.widget.AutoCompleteTextView.setText(java.lang.CharSequence, boolean)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.