1
1
Fork 0
mirror of https://github.com/DualBrain/QB64.git synced 2023-11-19 13:10:13 +00:00
QB64-website/wiki/_DESKTOPWIDTH.md
2022-12-24 21:14:48 -06:00

794 B

The _DESKTOPWIDTH function returns the width of the users current desktop.

Syntax

x& = _DESKTOPWIDTH

Description

  • No parameters are needed for this function.
  • This returns the width 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.

Example(s)


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