Int_getValue |
Homepage Wrappers |
Returns the value stored in the Int object.
value := Int_getValue(IntObject)
| IntObject | The Int object to use for the current operation. |
If IntObject is NULL (0 or blank), the empty string is returned, to indicate an error.
;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)