Character.IsValidCodePoint(Int32) Method

Definition

Determines whether the specified code point is a valid Unicode code point value.

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

Parameters

codePoint
Int32

the Unicode code point to be tested

Returns

true if the specified code point value is between #MIN_CODE_POINT and #MAX_CODE_POINT inclusive; false otherwise.

Attributes

Remarks

Determines whether the specified code point is a valid Unicode code point value.

Added in 1.5.

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