is not within

Typeoperator
DictionaryLCS
LibraryLiveCode Script
Syntax
<point> is not within <rectangle>
Summary

Evaluates to true if a point is outside the specified rectangle, false if it is inside.

Introduced1.0
OSmac, windows, linux, ios, android
Platformsdesktop, server, mobile
Parameters
NameTypeDescription
point

Any expression that evaluates to a point--a vertical and horizontal distance from the top left of the current stack, separated by a comma.

rectangle

Any expression that evaluates to a rectangle--a right, top, left, and bottom edge, separated by commas.

Example
"0,0" is not within "300,300,350,350" -- evaluates to true
RelatedKeyword: point
Operator: is within
Function: within
Glossary: evaluate, operator
Description

Use the is not within operator to determine whether a point is outside a rectangle.

The is not within operator is the logical inverse of the is within operator. When one is true, the other is false.

Tagsui