Short_getValue

Homepage
Wrappers

Returns the value stored in the Short object.

value := Short_getValue(ShortObject)

Parameters

ShortObject The Short object to use for the current operation.

Return Value

The value stored in the Short object.

Remarks

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

Related

Short_setValue

Short

Examples

;Creates a new Short initialized to 42
myShort := Short_new(42)

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

Homepage  |  Wrappers