UnicodeCharacters.IsCased(UInt32) Method

Definition

Determines if a specified Unicode character can be considered cased (uppercase, lowercase or titlecase).

public:
 static bool IsCased(unsigned int codepoint);
 static bool IsCased(uint32_t const& codepoint);
public static bool IsCased(uint codepoint);
function isCased(codepoint)
Public Shared Function IsCased (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 cased; otherwise FALSE.

Applies to

See also