Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 953 Bytes

File metadata and controls

41 lines (28 loc) · 953 Bytes

Home

Function name : ShowCursor

Group: Cursor - Library: user32


The ShowCursor function displays or hides the cursor.


Code examples:

Hiding mouse cursor
Storing screen shot of a form to bitmap file

Declaration:

int ShowCursor(
  BOOL bShow   // cursor visibility
);  

FoxPro declaration:

DECLARE INTEGER ShowCursor IN user32 INTEGER bShow  

Parameters:

bShow [in] Specifies whether the internal display counter is to be incremented or decremented. If bShow is TRUE, the display count is incremented by one. If bShow is FALSE, the display count is decremented by one.


Return value:

The return value specifies the new display counter.