1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-06-29 11:40:38 +00:00
QB64-PE/internal/help/_DESKTOPWIDTH.txt
SteveMcNeill 33adc04fc4 Add temp folder to repo. It's necessary as well!
Just more initial setting on... nothing much to see here.
2022-04-28 13:39:56 -04:00

39 lines
866 B
Plaintext

{{DISPLAYTITLE:_DESKTOPWIDTH}}
The [[_DESKTOPWIDTH]] function returns the width of the users current desktop.
{{PageSyntax}}
: {{Parameter|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.
==Availability==
* '''Version 1.000 and up.'''
{{PageExamples}}
{{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 (for example ''1920, 1080'' for a standard hdmi monitor), and then the size of the current [[SCREEN|screen]] (800, 600).
{{PageSeeAlso}}
* [[_HEIGHT]], [[_DESKTOPHEIGHT]]
* [[_WIDTH]], [[_SCREENIMAGE]]
{{PageNavigation}}
<