Deutsches LiveCode Wiki
Advertisement

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

<point> is not within <rectangle>

Examples:

"0,0" is not within "300,300,350,350" -- evaluates to true

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.

Parameters:

  • point: Any expression that evaluates to a point--a vertical and horizontaldistance from the top left of the current stack, separated by a comma.
  • rectangle: Any expression that evaluates to a rectangle--a right, top, left, andbottom edge, separated by commas.

See also: is within (operator),

Advertisement