UnicodeCharacters.IsSupplementary(UInt32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
确定指定的 Unicode 字符是否为补充字符。
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
参数
- codepoint
-
UInt32
unsigned int
uint32_t
一个 Unicode 字符。 这必须处于适当的范围内:0 <= codepoint<= 0x10FFFF。
返回
Boolean
bool
如果 codepoint 是补充字符,则为 TRUE;否则为 FALSE。
注解
此方法确定 codepoint 是否为 (大于 0xFFFF) 的补充字符。