IfNotBetween()

Namespace ›› System ›› Mfunc ›› Methods ››
Parent Previous Next

IfNotBetween()

OutputVar := Mfunc.IfNotBetween(byref var, LowerBound, UpperBound)

Mfunc.IfNotBetween(byref var, LowerBound, UpperBound)

Checks whether a variable's contents are not numerically or alphabetically between two values (inclusive).

Parameters

var

The variable name whose contents will be checked.

LowerBound

To be within the specified range, var must be greater than or equal to this string, number, or variable reference.

UpperBound

To be within the specified range, var must be less than or equal to this string, number, or variable reference.

Returns

Returns true if var is not between LowerBound and UpperBound; Otherwise false.

Remarks

If all three of the parameters are purely numeric, they will be compared as numbers rather than as strings. Otherwise, they will be compared alphabetically as strings (that is, alphabetical order will determine whether Var is within the specified range). In that case, StringCaseSense On can be used to make the comparison case sensitive.
Static Method.

See Also: AutoHotKey Between

Example

if (Mfunc.IfNotBetween(var, 1, 5))
{
	MsgBox, %var% is not in the range 1 to 5, inclusive.
}

if (!Mfunc.IfNotBetween(var, 0.0, 1.0))
{
	MsgBox %var% is in the range 0.0 to 1.0, inclusive.
}

if (Mfunc.IfNotBetween(var, VarLow, VarHigh))
{
	MsgBox %var% is not between %VarLow% and %VarHigh%.
}

if (Mfunc.IfNotBetween(var, "blue", "red"))
{
	 MsgBox %var% is alphabetically not between the words blue and red.
}

LowerLimit = 1
UpperLimit = 10
InputBox, UserInput, Enter a number between %LowerLimit% and %UpperLimit%
if (Mfunc.IfNotBetween(UserInput, LowerLimit, UpperLimit))
{
	MsgBox Your input is not within the valid range.
}