Difference between revisions of "MouseInBox"
From SCAR Divi Manual
(Created page with "==Definition== <func>function MouseInBox(const Box: TBox): Boolean;</func> ==Availability== SCAR Divi 3.25 > Current ==Description== Returns True if the cursor position rel...") |
|||
Line 1: | Line 1: | ||
==Definition== | ==Definition== | ||
− | < | + | <source lang="scar" lines="false"> |
+ | function MouseInBox(const Box: TBox): Boolean; | ||
+ | </source> | ||
==Availability== | ==Availability== |
Revision as of 18:48, 26 June 2011
Definition
function MouseInBox(const Box: TBox): Boolean;
Availability
SCAR Divi 3.25 > Current
Description
Returns True if the cursor position relative to the client is inside of a box specified by the TBox Box.
Example
begin WriteLn(MouseInBox(IntToBox(0, 0, 500, 500))); end.