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