Int_getValue

Homepage
Wrappers

Returns the value stored in the Int object.

value := Int_getValue(IntObject)

Parameters

IntObject The Int object to use for the current operation.

Return Value

The value stored in the Int object.

Remarks

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

Related

Int_setValue

Int

Examples

;Creates a new Int initialized to 42
myInt := Int_new(42)

;Outputs the value stored in myInt
MsgBox, % "The value for myInt is: " Int_getValue(myInt)

Homepage  |  Wrappers