Android.Widget.TextView.TextFormatted Property
Return the text the TextView is displaying.

Syntax

[get: Android.Runtime.Register("getText", "()Ljava/lang/CharSequence;", "GetGetTextHandler")]
[set: Android.Runtime.Register("setText", "(Ljava/lang/CharSequence;)V", "GetSetText_Ljava_lang_CharSequence_Handler")]
public Java.Lang.ICharSequence TextFormatted { get; set; }

Value

Documentation for this section has not yet been entered.

Remarks

Get method documentation [Android Documentation]

Return the text the TextView is displaying. If setText() was called with an argument of BufferType.SPANNABLE or BufferType.EDITABLE, you can cast the return value from this method to Spannable or Editable, respectively. Note: The content of the return value should not be modified. If you want a modifiable one, you should make your own copy first.

Set method documentation [Android Documentation]

Sets the string value of the TextView. TextView does not accept HTML-like formatting, which you can do with text strings in XML resource files. To style your strings, attach android.text.style.* objects to a Android.Text.SpannableString, or see the Available Resource Types documentation for an example of setting formatted text in the XML resource file.

Requirements

Namespace: Android.Widget
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1