Char_getValue

Homepage
Wrappers

Returns the value stored in the Char object.

value := Char_getValue(CharObject)

Parameters

CharObject The Char object to use for the current operation.

Return Value

The value stored in the Char object.

Remarks

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

Related

Char_setValue

Char

Examples

;Creates a new Char initialized to 42
myChar := Char_new(42)

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

Homepage  |  Wrappers