UChar_getValue

Homepage
Wrappers

Returns the value stored in the UChar object.

value := UChar_getValue(UCharObject)

Parameters

UCharObject The UChar object to use for the current operation.

Return Value

The value stored in the UChar object.

Remarks

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

Related

UChar_setValue

UChar

Examples

;Creates a new UChar initialized to 42
myUChar := UChar_new(42)

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

Homepage  |  Wrappers