String_getValue |
Homepage Wrappers |
Returns the value stored in the String object.
value := String_getValue(StringObject)
| StringObject | The String object to use for the current operation. |
If StringObject is NULL (0 or blank), the empty string is returned, to indicate an error.
;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)