Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 930 Bytes

GetClipCursor.md

File metadata and controls

42 lines (28 loc) · 930 Bytes

Home

Function name : GetClipCursor

Group: Cursor - Library: user32


Retrieves the screen coordinates of the rectangular area to which the cursor is confined.


Code examples:

Retrieving the rectangle area where the mouse cursor is confined
Clipping mouse cursor area

Declaration:

BOOL GetClipCursor(
	LPRECT  lpRect 	// address of structure for rectangle
);  

FoxPro declaration:

DECLARE SHORT GetClipCursor IN user32 STRING @ lpRect  

Parameters:

lpRect Points to a RECT structure that receives the screen coordinates of the confining rectangle.


Return value:

If the function succeeds, the return value is TRUE.