Float_getValue

Homepage
Wrappers

Returns the value stored in the Float object.

value := Float_getValue(FloatObject)

Parameters

FloatObject The Float object to use for the current operation.

Return Value

The value stored in the Float object.

Remarks

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

Related

Float_setValue

Float

Examples

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

Homepage  |  Wrappers