Window management: Difference between revisions

Line 99:
{{libheader|Icon Programming Library}}
[http://www.cs.arizona.edu/icon/library/src/procs/graphics.icn graphics.icn provides graphics]
 
=={{header|Oz}}==
<lang Mathematica>windows=Notebooks[];(*Find*)
SetOptions[windows[[1]],Visible->False];(*Hide*)
SetOptions[windows[[1]],Visible->True];(*Show*)
SetOptions[windows[[1]],WindowMargins->{{0,Automatic},{0,Automatic}}];(*Move*)
SetOptions[windows[[1]],WindowSize->{100,100}];(*Resize*)
</lang>
 
 
 
 
=={{header|Oz}}==
Anonymous user