ChrW Function [VBA]

Returns the Unicode character that corresponds to the specified character code.

Figyelmeztetés ikon

Ez a függvény vagy konstans a modul végrehajtható programkódja elé írt Option VBASupport 1 utasítással engedélyezett.


Szintaxis:

ChrW(Expression As Integer)

Visszatérési érték:

String

Paraméterek:

Expression: Numeric variables that represent a valid 16 bit Unicode value (0-65535). An empty value returns error code 5. A value out of the range [0,65535] returns error code 6.

Hibakódok:

5 Érvénytelen eljáráshívás

6 Túlcsordulás

Példa:

Sub ExampleChrW

 ' This example inserts the Greek letters alpha and omega in a string.

 MsgBox "From "+ ChrW(913)+" to " + ChrW(937)

 ' The printout appears in the dialog as: From Α to Ω

End Sub