GUI/Maximum window dimensions: Difference between revisions

no edit summary
m (syntax highlighting fixup automation)
No edit summary
Line 376:
<pre>
Maximum usable desktop area : W 1366 x H 728 pixels
</pre>
 
=={{header|FutureBasic}}==
<syntaxhighlight lang="futurebasic">include "NSLog.incl"
 
CGRect r
r = fn ScreenVisibleFrame( fn ScreenMainScreen )
NSLog(@"x:%.0f, y:%.0f, w:%.0f, h:%.0f",r.origin.x,r.origin.y,r.size.width,r.size.height)
 
HandleEvents</syntaxhighlight>
{{out}}
<pre>
x:0, y:50, w:1728, h:1029
</pre>
 
408

edits