Runtime.SetRetrievableString

Prototypes

static void SetRetrievableString( String s )

Parameters

String s
A reference to the String object.

Remarks

This method instructs the Runtime class to store a reference to a String object for retrieval at a later time. Use the method Runtime.GetRetrievableString to retrieve a reference to the String object.

Notes
Example
start PerformCalculation( x, y );
    Runtime.SetRetrievableString( "Note: calculation is multiplication" );
    return x * y;
finish;

x = 2;
y = 5;
z = PerformCalculation( x, y );
print z;
print (Runtime.GetRetrievableString());
See Also

Runtime.GetRetrievableObject

Runtime.GetRetrievableString

Runtime.SetRetrievableObject