String_getValue

Homepage
Wrappers

Returns the value stored in the String object.

value := String_getValue(StringObject)

Parameters

StringObject The String object to use for the current operation.

Return Value

The value stored in the String object.

Remarks

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

Related

String_setValue

String

Examples

;Creates a new String initialized to "Hello World!"
myString := String_new("Hello World!")

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

Homepage  |  Wrappers