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