GUI/Maximum window dimensions: Difference between revisions

→‎{{header|REXX}}: added the computer programming language REXX.
(Add XPL0 example.)
(→‎{{header|REXX}}: added the computer programming language REXX.)
Line 884:
{{out|On my system returns}}
<pre>Desktop viewport dimensions: (maximum-fullscreen size) 1920 x 1080</pre>
 
=={{header|REXX}}==
Most REXX interpreters essentially run "inside" a DOS window, &nbsp; and any attempts to find the (maximum) size of that
<br>window is limited to that (current) window, not the maximum.
 
Furthermore, the maximum size would depend on the &nbsp; ''smallest'' &nbsp; font supported by that window, which is dependent
<br>upon which code page is being used &nbsp; (and what font sizes it supports). &nbsp; On this author's system, &nbsp; it's a (fixed) font
<br>size of &nbsp; '''5''' &nbsp; (which is <u>barely</u> readable, &nbsp; but it's useful for &nbsp; X,Y &nbsp; plotting or for cut─n─paste).
 
It should be noted that DOS doesn't support a window that extends to other monitors. <br><br>
 
=={{header|Ring}}==