-- Lingo syntaxwindowObjRef.resizable // JavaScript syntaxwindowObjRef.resizable;
Window property; specifies whether the window is resizable (TRUE, default) or not (FALSE).
Read/write.
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();
}