forked from Galleondragon/qb64
-
Notifications
You must be signed in to change notification settings - Fork 24
_DESKTOPHEIGHT
Cory Smith edited this page Sep 1, 2022
·
4 revisions
The _DESKTOPHEIGHT function returns the height of the users current desktop.
y& = _DESKTOPHEIGHT
- 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.
- Version 1.000 and up.
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).