Character.IsBmpCodePoint(Int32) Method

Definition

Determines whether the specified character (Unicode code point) is in the Basic Multilingual Plane (BMP).

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

Parameters

codePoint
Int32

the character (Unicode code point) to be to

Returns

true if the specified code point is between #MIN_VALUE and #MAX_VALUE inclusive; false otherwise.

Attributes

Remarks

Determines whether the specified character (Unicode code point) is in the Basic Multilingual Plane (BMP). Such code points can be represented using a single char.

Added in 1.7.

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