UnicodeCharacters.IsSupplementary(UInt32) Method

Definition

Determines if a specified Unicode character is a supplementary character.

public:
 static bool IsSupplementary(unsigned int codepoint);
 static bool IsSupplementary(uint32_t const& codepoint);
public static bool IsSupplementary(uint codepoint);
function isSupplementary(codepoint)
Public Shared Function IsSupplementary (codepoint As UInteger) As Boolean

Parameters

codepoint
UInt32

unsigned int

uint32_t

A Unicode character. This must be in the proper range: 0 <= codepoint <= 0x10FFFF.

Returns

Boolean

bool

TRUE if codepoint is a supplementary character; otherwise FALSE.

Remarks

This method determines if codepoint is a supplementary character (greater than 0xFFFF).

Applies to

See also