_IsValueLessThanOrEqualToArray (PFDateTime, Array)

Checks if a specified date time value is less than or equal to at least one of the date time values in an array.

Syntax

_IsValueLessThanOrEqualToArray(valueToTest,valueList)

Parameters

Parameter Definition Data type

valueToTest

Date time value with which to compare the values in the array.

PFDateTime

valueList

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

Array of PFDateTime values

Returns

True or False (Boolean), indicating whether the specified date time value is less than or equal to at least one of the date time values in an array.

Notes

  • The valueToTest value is compared to each element of the array. If the value is less than or equal to every element of the array, the method returns True. If at least one element is greater than the value, the method returns False.
  • All comparisons are done using the _CompareDates method and are normalized. For more information, see Date time processing.