Inside

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Core Language > BuiltIn Functions > Numeric functions >

Inside

 

Description

 

Return %TRUE if the numeric expression to check is inside the specified limits.

 

Syntax

 

n = Inside(ExpressionToCheck, LowerValue, UpperValue)

 

Returns

 

Number

 

Parameters

 

Name

Type

Optional

Meaning

ExpressionToCheck

Numeric

No

Numeric expression to check

LowerValue

Numeric

No

Lower limit value (included)

UpperValue

Numeric

No

Upper limit value (included)

 

Remarks

 

Restrictions

 

See also

 

Between, Outside, MinMax

 

Examples