GetCursorY
Ypos = GetCursorY()
 
Parameters: NONE
Returns:

    Ypos = The current Y coordinate of the print cursor
 

The GetCursorY functions returns the current Y position of the print cursor.



FACTS:


* none



Mini Tutorial:


This example displays a few messages to the screen, then reads and displays the current print cursor.

  
  
; Display some messages to the screen
  Print "Hello World"
  Print "This is another example"
  
; Read the current print cursor position
; into some variables X and Y
  X=GetCursorX()
  Y=GetCursorY()
  
; Display where the print cursor was
  Print "Cursor Old Position: X"+Str$(x)+",Y"+Str$(y)
  
  
; Display the Screen and wait for the user to press a key
  Sync
  WaitKey
  
  




This example would output.

  
  
  Hello World
  This is another example
  Cursor Old Position: X0, Y26
  

 
Related Info: CursorLineFeed | CursorMargin | GetCursorLineFeed | GetCursorMargin | GetCursorX | Print | SetCursor | SetCursorX | SetCursorY | SetFont :
 


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