The members of Android.Text.IEditable are listed below.
Append(Java.Lang.ICharSequence)Convenience for replace(length(), length(), text, 0, text.length()) | ||
Append(char)Convenience for append(String.valueOf(text)). | ||
Append(Java.Lang.ICharSequence, int, int)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)Convenience for replace(st, en, "", 0, 0) | ||
GetFilters()Returns the array of input filters that are currently applied to changes to this Editable. | ||
Insert(int, Java.Lang.ICharSequence)Convenience for replace(where, where, text, 0, text.length()); | ||
Insert(int, Java.Lang.ICharSequence, int, int)Convenience for replace(where, where, text, start, end) | ||
Replace(int, int, Java.Lang.ICharSequence)Convenience for replace(st, en, text, 0, text.length()) | ||
Replace(int, int, Java.Lang.ICharSequence, int, int)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. |