Window management: Difference between revisions

no edit summary
No edit summary
Line 152:
SetOptions[nb,WindowSize->{100,100}](*Resize*)
</lang>
 
 
=={{header|Nimrod}}==
Line 234 ⟶ 235:
main()</lang>
 
=={{header|Mathematica}}==
<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}}==