_IsValueGreaterThanOrEqualToArray (Float, Array)

Checks if a float value is greater than or equal to at least one of the values in an array.

Syntax

_IsValueGreaterThanOrEqualToArray(valueToTest,valueList)

Parameters

Parameter Definition Data type

valueToTest

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

Float

valueList

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

Array of Float values

Returns

True or False (Boolean), indicating whether the float value to test is greater than all of the elements in the array.

Notes

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