_IsValueLessThanArray (Integer, Array)

Checks if a specified integer value is less than all integer values in an array.

Syntax

_IsValueLessThanArray(valueToTest,valueList)

Parameters

Parameter Definition Data type

valueToTest

Integer value with which to compare the values in the array.

Integer

valueList

Array of integer values against which to compare the value specified in the valueToTest parameter.

Array of Integer values

Returns

True or False (Boolean), indicating whether the specified integer value is less than all integer values in an array.

Notes

The valueToTest value is compared to each element of the array. If the value is less than every element of the array, the method returns True. If at least one element is greater than or equal to the value, the method returns False.