UnicodeCharacters.IsAlphabetic(UInt32) 方法

定义

确定是否可将指定的 Unicode 字符视为字母顺序。

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

参数

codepoint
UInt32

unsigned int

uint32_t

一个 Unicode 字符。 这必须在正确的范围内:0 <= codepoint<= 0x10FFFF。

返回

Boolean

bool

如果代码点是字母顺序的,则为 TRUE;否则为 FALSE

适用于

另请参阅