Character.IsSupplementaryCodePoint(Int32) 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.
Determines whether the specified character (Unicode code point) is in the supplementary character range.
[Android.Runtime.Register("isSupplementaryCodePoint", "(I)Z", "")]
public static bool IsSupplementaryCodePoint(int codePoint);
	[<Android.Runtime.Register("isSupplementaryCodePoint", "(I)Z", "")>]
static member IsSupplementaryCodePoint : int -> bool
	Parameters
- codePoint
 - Int32
 
the character (Unicode code point) to be tested
Returns
true if the specified code point is between
#MIN_SUPPLEMENTARY_CODE_POINT and
#MAX_CODE_POINT inclusive;
false otherwise.
- Attributes
 
Remarks
Determines whether the specified character (Unicode code point) is in the supplementary character range.
Added in 1.5.
Java documentation for java.lang.Character.isSupplementaryCodePoint(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.