GetCursorMargin
Xpos = GetCursorMargin()
 
Parameters: NONE
Returns:

    Xpos = The Current print cursor X position
 

The GetCursorMargin function returns the current print cursors X position margin.


FACTS:


* By default the CursorMargin will be zero



Mini Tutorial:


This example sets the print cursor margin, displays a message and the current cursor margin value.

  
  
; Set the Cursor Margin To 100
  CursorMargin 100
  
; Display a message to the screen
  Print "Working With Cursor Margins"
  
; Display what current cursor margin is set to
  Print "Current Cursor Margin:"+Str$(GetCursorMargin())
  
; Display the Screen and wait for the user to press a key
  Sync
  WaitKey
  



This example would output.

  
  Working With Cursor Margins
  Current Cursor Margin:100
  

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


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