Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Force 4.0 Reference - cursoroff() turn the cursor off http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 cursoroff()         Turn the cursor off
------------------------------------------------------------------------------
 Declaration
   screen.hdr

 Syntax
   proc cursoroff extern

 Arguments
   None.

 Return
   None.

 Description
   The cursoroff() procedure turns the screen cursor off and is commonly used
   when an alternative cursor, such as a light bar, is used. cursoroff() is
   equivalent to cursor( .f. ).

 Example
   #define EXAMPLE_SCREEN
   #include example.hdr

   proc Test_cursoroff
   vardef
      logical lCursor
   enddef
   lCursor := iscursor()
   cursoron()
   wait "Cursor is on.  Press a key."
   cursoroff()
   wait "Cursor is off. Press a key."
   if lCursor
      cursoron()
   endif
   endproc

   proc main
   Test_cursoroff()
   endproc

See Also: cursor() cursoron() iscursor()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson