UShort_getValue

Homepage
Wrappers

Returns the value stored in the UShort object.

value := UShort_getValue(UShortObject)

Parameters

UShortObject The UShort object to use for the current operation.

Return Value

The value stored in the UShort object.

Remarks

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

Related

UShort_setValue

UShort

Examples

;Creates a new UShort initialized to 42
myUShort := UShort_new(42)

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

Homepage  |  Wrappers