SCREENX: Difference between revisions

From QB64 Phoenix Edition Wiki
Jump to navigation Jump to search
(Created page with "{{DISPLAYTITLE:_SCREENX}} The _SCREENX function returns the current column pixel coordinate of the program window on the desktop. {{PageSyntax}} : {{Parameter|positionX&}} = _SCREENX {{PageDescription}} * Function returns the current program window's upper left corner column position on the desktop. * Use _DESKTOPWIDTH and _DESKTOPHEIGHT to find the current Windows desktop resolution to adjust the position with _SCREENMOVE. * Keywords_currently_...")
 
No edit summary
Line 30: Line 30:


{{PageNavigation}}
{{PageNavigation}}
[[Category:Latest]]

Revision as of 07:44, 8 July 2022

The _SCREENX function returns the current column pixel coordinate of the program window on the desktop.


Syntax

positionX& = _SCREENX


Description


Examples

Example: Clicks and opens program window header menu:

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


See also



Navigation:
Main Page with Articles and Tutorials
Keyword Reference - Alphabetical
Keyword Reference - By usage
Report a broken link