Lock the window so it can't be moved or resized.
Availability:
First available in version 3.1 build 65.
Input Parameters:
flag - A flag that controls whether the window should be locked at its current size and position or not. Valid values include: true and false.
Output Parameters:
No output parameters.
Asynchronous Mode:
When this method is called asynchronously, a return object containing the output parameters is passed to the specified callback function.
ssCore.Win.lockWindow( paramsObject [, callbackParamsObject] [, errorParamsObject] );
Synchronous Mode:
When this method is called synchronously, a return object containing the output parameters is returned to the caller immediately.
var returnObject = ssCore.Win.lockWindow( paramsObject );
Notes:
None.
Examples:
ssCore.Win.lockWindow({flag:true});