1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-03 12:21:20 +00:00
QB64-PE/internal/help/_DESKTOPHEIGHT__1111111111111.txt
Roland Heyder aeb9c0668b Updates help files for use with new Wiki parser (2nd try)
Note: Many files were removed (not yet existing/empty pages). The parser will try to download them on demand and will auto-generate text for missing pages (eg. most _gl pages).
2022-05-21 00:18:31 +02:00

42 lines
960 B
Plaintext

{{QBDLDATE:05-20-2022}}
{{QBDLTIME:23:07:42}}
{{DISPLAYTITLE:_DESKTOPHEIGHT}}
The [[_DESKTOPHEIGHT]] function returns the height of the users current desktop.
{{PageSyntax}}
: {{Parameter|y&}} = [[_DESKTOPHEIGHT]]
{{PageDescription}}
* 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.
{{PageAvailability}}
* '''QB64 1.0 and up''' (QB64 Team)
* '''QBPE 0.5 and up''' (QB64 Phoenix Edition)
{{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]], [[_DESKTOPWIDTH]]
* [[_WIDTH]], [[_SCREENIMAGE]]
{{PageNavigation}}