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