EditableFactory.NewEditable Method

Definition

Overloads

NewEditable(ICharSequence)

Returns a new SpannableStringBuilder from the specified CharSequence.

NewEditable(String)

Returns a new SpannableStringBuilder from the specified CharSequence.

NewEditable(ICharSequence)

Returns a new SpannableStringBuilder from the specified CharSequence.

[Android.Runtime.Register("newEditable", "(Ljava/lang/CharSequence;)Landroid/text/Editable;", "GetNewEditable_Ljava_lang_CharSequence_Handler")]
public virtual Android.Text.IEditable? NewEditable (Java.Lang.ICharSequence? source);
[<Android.Runtime.Register("newEditable", "(Ljava/lang/CharSequence;)Landroid/text/Editable;", "GetNewEditable_Ljava_lang_CharSequence_Handler")>]
abstract member NewEditable : Java.Lang.ICharSequence -> Android.Text.IEditable
override this.NewEditable : Java.Lang.ICharSequence -> Android.Text.IEditable

Parameters

source
ICharSequence

Returns

Attributes

Remarks

Returns a new SpannableStringBuilder from the specified CharSequence. You can override this to provide a different kind of Spanned.

Java documentation for android.text.Editable.Factory.newEditable(java.lang.CharSequence).

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

NewEditable(String)

Returns a new SpannableStringBuilder from the specified CharSequence.

public Android.Text.IEditable? NewEditable (string? source);
member this.NewEditable : string -> Android.Text.IEditable

Parameters

source
String

Returns

Remarks

Returns a new SpannableStringBuilder from the specified CharSequence. You can override this to provide a different kind of Spanned.

Java documentation for android.text.Editable.Factory.newEditable(java.lang.CharSequence).

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