Character.IsISOControl Method

Definition

Overloads

IsISOControl(Char)

Determines if the specified character is an ISO control character.

IsISOControl(Int32)

Determines if the referenced character (Unicode code point) is an ISO control character.

IsISOControl(Char)

Determines if the specified character is an ISO control character.

[Android.Runtime.Register("isISOControl", "(C)Z", "")]
public static bool IsISOControl (char ch);
[<Android.Runtime.Register("isISOControl", "(C)Z", "")>]
static member IsISOControl : char -> bool

Parameters

ch
Char

the character to be tested.

Returns

true if the character is an ISO control character; false otherwise.

Attributes

Remarks

Determines if the specified character is an ISO control character. A character is considered to be an ISO control character if its code is in the range '\u005Cu0000' through '\u005Cu001F' or in the range '\u005Cu007F' through '\u005Cu009F'.

<b>Note:</b> This method cannot handle supplementary characters. To support all Unicode characters, including supplementary characters, use the #isISOControl(int) method.

Added in 1.1.

Java documentation for java.lang.Character.isISOControl(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

IsISOControl(Int32)

Determines if the referenced character (Unicode code point) is an ISO control character.

[Android.Runtime.Register("isISOControl", "(I)Z", "")]
public static bool IsISOControl (int codePoint);
[<Android.Runtime.Register("isISOControl", "(I)Z", "")>]
static member IsISOControl : int -> bool

Parameters

codePoint
Int32

the character (Unicode code point) to be tested.

Returns

true if the character is an ISO control character; false otherwise.

Attributes

Remarks

Determines if the referenced character (Unicode code point) is an ISO control character. A character is considered to be an ISO control character if its code is in the range '\u005Cu0000' through '\u005Cu001F' or in the range '\u005Cu007F' through '\u005Cu009F'.

Added in 1.5.

Java documentation for java.lang.Character.isISOControl(int).

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