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