次の方法で共有


UnicodeCharacters.GetSurrogatePairFromCodepoint(UInt32, Char, Char) メソッド

定義

指定した補助 Unicode 文字の上位と下位のサロゲート ペア値を返します。

public:
 static void GetSurrogatePairFromCodepoint(unsigned int codepoint, [Out] char16 & highSurrogate, [Out] char16 & lowSurrogate);
 static void GetSurrogatePairFromCodepoint(uint32_t const& codepoint, [Out] char16_t & highSurrogate, [Out] char16_t & lowSurrogate);
public static void GetSurrogatePairFromCodepoint(uint codepoint, out char highSurrogate, out char lowSurrogate);
Public Shared Sub GetSurrogatePairFromCodepoint (codepoint As UInteger, ByRef highSurrogate As Char, ByRef lowSurrogate As Char)

パラメーター

codepoint
UInt32

unsigned int

uint32_t

Unicode 文字。 これは、適切な範囲である必要があります: 0 <= codepoint<= 0x10FFFF。

highSurrogate
Char

char16

char16_t

返される上位サロゲート値。

lowSurrogate
Char

char16

char16_t

返される低サロゲート値。

注釈

補助 Unicode 文字については、「 サロゲートと補助文字 」を参照してください。

適用対象

こちらもご覧ください