OWBasic for Pocketviewer

Home INTRO Alphabetical Index

Test if Value is in a Given Range

INRANGE!(v%,v1%,v2%)

Checks, if the value v is within a given range from v1 to v2. Returns TRUE if the value is inside the range, FALSE otherwise.

The function is equivalent to the boolean expression

(v>=v1) AND (v<=v2)


  • INSIDE! - Test if Coordinates are in a Window
Home INTRO Alphabetical Index