FT_MCURSOR()
Set the mouse cursor
──────────────────────────────────────────────────────────────────────────────

Syntax

FT_MCURSOR( [ <lState> ] ) -> lCursorState

Arguments

<lState> is a logical indicating whether to set the mouse cursor on.
.T. - set mouse cursor on
.F. - set mouse cursor off
If omitted, no change is made to cursor state

Returns

A logical indicating the previous mouse cursor state.

Description

This function works like most Clipper state functions. If no value
is sent to FT_MCURSOR() it will return the state of the mouse cursor.

Examples

IF !( FT_MCURSOR() )
FT_MCURSOR( .T. )
ENDIF

Source: MOUSE1.PRG

Author: Leo Letendre