IEditable.Append Method

Definition

Overloads

Append(ICharSequence)

Convenience for replace(length(), length(), text, 0, text.

Append(Char)

Convenience for append(String.

Append(ICharSequence, Int32, Int32)

Convenience for replace(length(), length(), text, start, end)

Append(ICharSequence)

Convenience for replace(length(), length(), text, 0, text.

[Android.Runtime.Register("append", "(Ljava/lang/CharSequence;)Landroid/text/Editable;", "GetAppend_Ljava_lang_CharSequence_Handler:Android.Text.IEditableInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public Java.Lang.IAppendable? Append (Java.Lang.ICharSequence? text);
[<Android.Runtime.Register("append", "(Ljava/lang/CharSequence;)Landroid/text/Editable;", "GetAppend_Ljava_lang_CharSequence_Handler:Android.Text.IEditableInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member Append : Java.Lang.ICharSequence -> Java.Lang.IAppendable

Parameters

text
ICharSequence

the character sequence to append.

Returns

Implements

Attributes

Remarks

Convenience for replace(length(), length(), text, 0, text.length())

Java documentation for android.text.Editable.append(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.

See also

  • <xref:Android.Text.IEditable.Replace(System.Int32%2c+System.Int32%2c+System.Int32%2c+System.Int32%2c+System.Int32)>

Applies to

Append(Char)

Convenience for append(String.

[Android.Runtime.Register("append", "(C)Landroid/text/Editable;", "GetAppend_CHandler:Android.Text.IEditableInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public Java.Lang.IAppendable? Append (char text);
[<Android.Runtime.Register("append", "(C)Landroid/text/Editable;", "GetAppend_CHandler:Android.Text.IEditableInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member Append : char -> Java.Lang.IAppendable

Parameters

text
Char

the character to append.

Returns

Implements

Attributes

Remarks

Convenience for append(String.valueOf(text)).

Java documentation for android.text.Editable.append(char).

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.

See also

  • <xref:Android.Text.IEditable.Replace(System.Int32%2c+System.Int32%2c+System.Int32%2c+System.Int32%2c+System.Int32)>

Applies to

Append(ICharSequence, Int32, Int32)

Convenience for replace(length(), length(), text, start, end)

[Android.Runtime.Register("append", "(Ljava/lang/CharSequence;II)Landroid/text/Editable;", "GetAppend_Ljava_lang_CharSequence_IIHandler:Android.Text.IEditableInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public Java.Lang.IAppendable? Append (Java.Lang.ICharSequence? text, int start, int end);
[<Android.Runtime.Register("append", "(Ljava/lang/CharSequence;II)Landroid/text/Editable;", "GetAppend_Ljava_lang_CharSequence_IIHandler:Android.Text.IEditableInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member Append : Java.Lang.ICharSequence * int * int -> Java.Lang.IAppendable

Parameters

text
ICharSequence

the character sequence to append.

start
Int32

the first index of the subsequence of csq that is appended.

end
Int32

the last index of the subsequence of csq that is appended.

Returns

Implements

Attributes

Remarks

Convenience for replace(length(), length(), text, start, end)

Java documentation for android.text.Editable.append(java.lang.CharSequence, int, int).

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.

See also

  • <xref:Android.Text.IEditable.Replace(System.Int32%2c+System.Int32%2c+System.Int32%2c+System.Int32%2c+System.Int32)>

Applies to