Android.Text.IEditable Members

The members of Android.Text.IEditable are listed below.

Public Methods

Append(Java.Lang.ICharSequence) : Java.Lang.IAppendable
Convenience for replace(length(), length(), text, 0, text.length())
Append(char) : Java.Lang.IAppendable
Convenience for append(String.valueOf(text)).
Append(Java.Lang.ICharSequence, int, int) : Java.Lang.IAppendable
Convenience for replace(length(), length(), text, start, end)
Clear()
Convenience for replace(0, length(), "", 0, 0)
ClearSpans()
Removes all spans from the Editable, as if by calling ISpannable.RemoveSpan(Java.Lang.Object) on each of them.
Delete(int, int) : IEditable
Convenience for replace(st, en, "", 0, 0)
GetFilters() : IInputFilter[]
Returns the array of input filters that are currently applied to changes to this Editable.
Insert(int, Java.Lang.ICharSequence) : IEditable
Convenience for replace(where, where, text, 0, text.length());
Insert(int, Java.Lang.ICharSequence, int, int) : IEditable
Convenience for replace(where, where, text, start, end)
Replace(int, int, Java.Lang.ICharSequence) : IEditable
Convenience for replace(st, en, text, 0, text.length())
Replace(int, int, Java.Lang.ICharSequence, int, int) : IEditable
Replaces the specified range (st…en) of text in this Editable with a copy of the slice start…end from source.
SetFilters(IInputFilter[])
Sets the series of filters that will be called in succession whenever the text of this Editable is changed, each of which has the opportunity to limit or transform the text that is being inserted.