Show or hide the window border at runtime. If the window has a caption (title) When the border is disabled, the caption will be disabled as well.
Availability:
First available in version 3.0 build 2039.
Input Parameters:
flag - A true/false flag that determines whether the border will be visible 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.showBorder( 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.showBorder( paramsObject );
Notes:
None.
Examples:
ssCore.Win.showBorder({flag:false});