Function CSPApplication::Lock()
Description:
Locks the Application object so that it is guaranteed for explicit use.
 |
Prototype:
void Lock();
Arguments:
No arguments (void).
Return value:
No return value (void).
Remarks:
Use member function Unlock() to unlock the Application object. 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 Unlock()
|
|