Freigeben über


UnicodeCharacters.IsSupplementary(UInt32) Methode

Definition

Bestimmt, ob ein angegebenes Unicode-Zeichen ein zusätzliches Zeichen ist.

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

Parameter

codepoint
UInt32

unsigned int

uint32_t

Ein Unicode-Zeichen. Dies muss im richtigen Bereich liegen: 0 <= codepoint<= 0x10FFFF.

Gibt zurück

Boolean

bool

TRUE , wenn codepoint ein zusätzliches Zeichen ist; andernfalls FALSE.

Hinweise

Diese Methode bestimmt, ob der Codepunkt ein zusätzliches Zeichen (größer als 0xFFFF) ist.

Gilt für:

Weitere Informationen