TextUtils.IsGraphic Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
IsGraphic(ICharSequence) |
Returns whether the given CharSequence contains any printable characters. |
IsGraphic(Char) |
Returns whether this character is a printable character. |
IsGraphic(String) |
Returns whether the given CharSequence contains any printable characters. |
IsGraphic(ICharSequence)
Returns whether the given CharSequence contains any printable characters.
[Android.Runtime.Register("isGraphic", "(Ljava/lang/CharSequence;)Z", "")]
public static bool IsGraphic (Java.Lang.ICharSequence? str);
[<Android.Runtime.Register("isGraphic", "(Ljava/lang/CharSequence;)Z", "")>]
static member IsGraphic : Java.Lang.ICharSequence -> bool
Parameters
- str
- ICharSequence
Returns
- Attributes
Remarks
Returns whether the given CharSequence contains any printable characters.
Java documentation for android.text.TextUtils.isGraphic(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.
Applies to
IsGraphic(Char)
Returns whether this character is a printable character.
[Android.Runtime.Register("isGraphic", "(C)Z", "")]
public static bool IsGraphic (char c);
[<Android.Runtime.Register("isGraphic", "(C)Z", "")>]
static member IsGraphic : char -> bool
Parameters
- c
- Char
Returns
- Attributes
Remarks
Returns whether this character is a printable character.
This does not support non-BMP characters and should not be used.
This member is deprecated. Use #isGraphic(CharSequence)
instead.
Java documentation for android.text.TextUtils.isGraphic(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.
Applies to
IsGraphic(String)
Returns whether the given CharSequence contains any printable characters.
public static bool IsGraphic (string? str);
static member IsGraphic : string -> bool
Parameters
- str
- String
Returns
Remarks
Returns whether the given CharSequence contains any printable characters.
Java documentation for android.text.TextUtils.isGraphic(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.