home *** CD-ROM | disk | FTP | other *** search
- ISCURSOR()
- _____________________________________________________________________
- |
- | ISCURSOR()
- |_____________________________________________________________________
- |
- |
- Syntax: | ISCURSOR()
- |
- Purpose: | To determine whether the cursor is set ON or OFF.
- | Written for Summer '87 CLIPPER release.
- |
- Returns: | A logical value.
- |
- | ISCURSOR() returns true (.T.) if the cursor is ON
- | it returns false (.F.) if the cursor is OFF.
- |
- Example | *-* on entry to a proc which uses the cursor
- | *-* such as HELP or RULER, and may be called from
- | *-* a wait state in which the cursor is off, such
- | *-* as MENU TO ...
- | FUNCTION WHATEVER
- | cur_stat = ISCURSOR()
- | SET CURSOR ON
- | *-* whatever function code
- | IF .NOT. cur_stat
- | SET CURSOR OFF
- | ENDIF
- | RETURN
- |
- Library: | ISCURSOR.OBJ - must link with your program
- |
- Source: | ISCURSOR.ASM author - J. S. Prinke 6/88
- |
- See also: | SET CURSOR, ISPRINTER(), ISLOWER(), ISUPPER()
- |
- |
- |
- |
- |
- |
- |
- |
- |
- INSERT
- ______________________________________________________________________________________
- 6-81
-
-
- @