Funktion ChrW [VBA]

Gibt das zum angegebenen Zeichencode gehörige Unicode-Zeichen zurück.

warning

This constant, function or object is enabled with the statement Option VBASupport 1 placed before the executable program code in a module.


Syntax:


ChrW(Ausdruck As Integer)

Rückgabewert:

Zeichenkette

Parameter:

Expression: Numeric variables that represent a valid 16 bit Unicode value (0-65535). (To support expressions with a nominally negative argument like ChrW(&H8000) in a backwards-compatible way, values in the range −32768 to −1 are internally mapped to the range 32768 to 65535.) An empty value returns error code 5. A value out of the range [0,65535] returns error code 6.

Fehlercodes:

5 Ungültiger Prozeduraufruf

6 Überlauf

Beispiel:


Sub ExampleChrW
 ' Dieses Beispiel fügt die griechischen Buchstaben Alpha und Omega in eine Zeichenkette ein.
 MsgBox "Von "+ ChrW(913)+" bis " + ChrW(937)
 ' Bei der Ausgabe erscheint im Dialog: Von Α bis Ω
End Sub