resizable

Usage

-- Lingo syntax
windowObjRef.resizable

// JavaScript syntax
windowObjRef.resizable;

Description

Window property; specifies whether the window is resizable (TRUE, default) or not (FALSE).
Read/write.

Example

These statements maximize the window named Empire if the window is resizable.

-- Lingo syntax
if (window("Empire").resizable = TRUE) then
   window("Empire").maximize()
end if

// JavaScript syntax
if (window("Empire").resizable = true) {
   window("Empire").maximize();
}

See also

Window