Share via


UnicodeCharacters.IsLowercase(UInt32) Method

Definition

Determines if a specified Unicode character can be considered a lower case character.

public:
 static bool IsLowercase(unsigned int codepoint);
 static bool IsLowercase(uint32_t const& codepoint);
public static bool IsLowercase(uint codepoint);
function isLowercase(codepoint)
Public Shared Function IsLowercase (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 lower case character; otherwise FALSE.

Applies to

See also