_DESKTOPHEIGHT

From QB64 Wiki
Revision as of 17:10, 5 September 2017 by imported>SMcNeill (-)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

The _DESKTOPHEIGHT function returns the height of the users current desktop.


Syntax

y& = _DESKTOPHEIGHT


Description

  • No parameters are needed for this function.
  • This returns the height of the user's desktop, not the size of any screen or window which might be open on that desktop.


Availability

  • Version 1.000 and up.


Examples

s& = _NEWIMAGE(800, 600, 256) SCREEN s& PRINT _DESKTOPWIDTH, _DESKTOPHEIGHT PRINT _WIDTH, _HEIGHT

Explanation: This will print the size of the user desktop (for example 1920, 1080 for a standard hdmi monitor), and then the size of the current screen (800, 600).


See also




Navigation:
Go to Keyword Reference - Alphabetical
Go to Keyword Reference - By usage
Go to Main WIKI Page