The GetObjectValue function retrieves the private value of the specified instance.
Syntax
String Global.GetObjectValue(
Pointer obj)
Pointer obj)
Parameters
| obj | Reference of the object. | Required |
|---|
Return value
The GetObjectValue function returns the private value.
If the object is not valid, the GetObjectValue function returns an empty string.
Example
Table table new
SetObjectValue(table, "text")
data = GetObjectValue(table)
SetObjectValue(table, "text")
data = GetObjectValue(table)