1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-03 15:51:20 +00:00
QB64-PE/internal/help/_DESKTOPWIDTH.txt

36 lines
833 B
Plaintext
Raw Normal View History

2016-03-18 11:36:04 +00:00
{{DISPLAYTITLE:_DESKTOPWIDTH}}
The '''_DESKTOPWIDTH''' function returns the width of the users current desktop.
{{PageSyntax}}
::: x& = '''_DESKTOPWIDTH'''
{{PageDescription}}
* 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.
* Only available for use in GL. SDL version does not support this keyword.
{{CodeStart}}
s& = {{Cl|_NEWIMAGE}}(800, 600, 256)
SCREEN s&
PRINT _DESKTOPWIDTH, _DESKTOPHEIGHT
PRINT _WIDTH, _HEIGHT
{{CodeEnd}}
: ''Explanation:'' This will print the size of the user desktop (in my case currently 1920, 1080), and then the size of the current screen (800,600).
{{PageSeeAlso}}
* [[_HEIGHT]], [[_DESKTOPHEIGHT]]
* [[_WIDTH]], [[_SCREENIMAGE]]
{{PageNavigation}}