TextUtils.DumpSpans Method

Definition

Overloads

DumpSpans(String, IPrinter, String)

Debugging tool to print the spans in a CharSequence.

DumpSpans(ICharSequence, IPrinter, String)

Debugging tool to print the spans in a CharSequence.

DumpSpans(String, IPrinter, String)

Debugging tool to print the spans in a CharSequence.

public static void DumpSpans (string? cs, Android.Util.IPrinter? printer, string? prefix);
static member DumpSpans : string * Android.Util.IPrinter * string -> unit

Parameters

cs
String
printer
IPrinter
prefix
String

Remarks

Debugging tool to print the spans in a CharSequence. The output will be printed one span per line. If the CharSequence is not a Spanned, then the entire string will be printed on a single line.

Java documentation for android.text.TextUtils.dumpSpans(java.lang.CharSequence, android.util.Printer, java.lang.String).

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

DumpSpans(ICharSequence, IPrinter, String)

Debugging tool to print the spans in a CharSequence.

[Android.Runtime.Register("dumpSpans", "(Ljava/lang/CharSequence;Landroid/util/Printer;Ljava/lang/String;)V", "")]
public static void DumpSpans (Java.Lang.ICharSequence? cs, Android.Util.IPrinter? printer, string? prefix);
[<Android.Runtime.Register("dumpSpans", "(Ljava/lang/CharSequence;Landroid/util/Printer;Ljava/lang/String;)V", "")>]
static member DumpSpans : Java.Lang.ICharSequence * Android.Util.IPrinter * string -> unit

Parameters

printer
IPrinter
prefix
String
Attributes

Remarks

Debugging tool to print the spans in a CharSequence. The output will be printed one span per line. If the CharSequence is not a Spanned, then the entire string will be printed on a single line.

Java documentation for android.text.TextUtils.dumpSpans(java.lang.CharSequence, android.util.Printer, java.lang.String).

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