UnicodeCharacters.GetSurrogatePairFromCodepoint(UInt32, Char, Char) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定した補助 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 文字については、「 サロゲートと補助文字 」を参照してください。