JavaScript
windowObject.setResizeDisabled Method
Syntax
windowObj.setResizeDisabled(disabled);
Arguments
- disabledboolean
A true/false value. If true, the window cannot be resized. If false, the window can be resized.
Description
Enables or disables the ability to resize the Window.
Example
//get a pointer to the window object
var windowObj = {dialog.object}.getWindow('MYWINDOW');
if (windowObj) {
windowObj.setResizeDisabled(true);
}