IsPointNotWithinRect |
Type | operator |
Dictionary | LCB |
Library | LiveCode Builder |
Syntax | <Point> is not within <Rect>
|
Associations | com.livecode.widget |
Summary | Determines whether a point is within a rectangle.
|
Parameters | Name | Type | Description |
---|
Point | | An expression that evaluates to a Point.
|
Rect | | An expression that evaluates to a Rectangle.
|
|
Example | variable tClick as Point
put the click position into tClick
variable tRect as Rectangle
put my bounds into tRect
if tClick is not within tRect then
end if
|
Description | Determines whether a point is within a rectangle.
|
Tags | widget |