GetScreenYpos
Ypos = GetScreenYpos()
 
Parameters: NONE
Returns:

    Ypos = The currentYX coordinate of the PB screen in windowed mode.
 

      GetScreenYpos() returns the current Y position of the screen upon the desk top.



FACTS:


      * Only useful when your program is running in windowed mode. See OpenScreen



Mini Tutorial:


      Read and display the current screen position.

  
; Start a Loop
  Repeat
   ; Clear the Screen to black  (rgb(0,0,0))
     Cls RGB(0,0,0)
     
   ; Display a message to the user
     Print "Move the Window using your move.. Press ESC to exit "
     
   ; Display the Current X and Y positions of the Screen..
     Print "Screen Is a X position :"+Str$(GetScreenXpos())
     Print "Screen Is a Y position :"+Str$(GetScreenYpos())
     
   ; Display the Screen
     Sync
     
   ; check if the ESC key was pressed, if not loop back
   ; to the repeat statement above to continue.
  Until EscKey()=true
  



 
Related Info: CenterScreen | GetScreenXpos | PositionScreen :
 


(c) Copyright 2002 - 2024 - Kevin Picone - PlayBASIC.com