Double_getValue

Homepage
Wrappers

Returns the value stored in the Double object.

value := Double_getValue(DoubleObject)

Parameters

DoubleObject The Double object to use for the current operation.

Return Value

The value stored in the Double object.

Remarks

If DoubleObject is NULL (0 or blank), the empty string is returned, to indicate an error.

Related

Double_setValue

Double

Examples

;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)

Homepage  |  Wrappers