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