UChar_getValue |
Homepage Wrappers |
Returns the value stored in the UChar object.
value := UChar_getValue(UCharObject)
| UCharObject | The UChar object to use for the current operation. |
If UCharObject is NULL (0 or blank), the empty string is returned, to indicate an error.
;Creates a new UChar initialized to 42 myUChar := UChar_new(42) ;Outputs the value stored in myUChar MsgBox, % "The value for myUChar is: " UChar_getValue(myUChar)