Up |
Set the maximal window size.
fun [ObjWin I I] ObjWin
Return : ObjWin the same window object or nil if error
typeof win = ObjWin;;
fun main ()=
_showconsole;
set win = _CRwindow _channel nil 0 0 300 200 WN_SIZEBOX "Test MinMaxWindow";
_SETwindowMaxSize win 600 600;
_SETwindowMinSize win 100 100;
...
0;;