1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-07 19:10:25 +00:00
qb64/internal/help/_SCREENY.md

854 B

The _SCREENY function returns the current row pixel coordinate of the program window on the desktop.

Syntax

positionY& = _SCREENY

Description

Example(s)

Clicks and opens program window header menu:


_SCREENMOVE _MIDDLE
_SCREENCLICK _SCREENX + 10, _SCREENY + 10
PRINT "Hello window!" 

See Also