Function CSPApplication::Unlock()
Description:
Unlocks the Application object so that it is no more explicitly used.
 |
Prototype:
void Unlock();
Arguments:
No arguments (void).
Return value:
No return value (void).
Remarks:
This is used in combination with member function Lock(). The Application object is automatically unlock at the end of the script execution.
Examples:
Application.Lock(); Application.SetValue( "varname1", "value1" ); Application.SetValue( "varname2", "value2" ); Application.Unlock();
See also:
member function Lock()
|
|