MinOf
Returns the lowest value from a list of values.
Syntax
MinOf(<value> [,<value>] ...])
Parameters
<value>
Type: None
Data value. Separate multiple values by using commas.
(return)
Type: None
The minimum of all values.
Notes
The MinOf function compares non-null values and returns the lowest value. If all values are null, the return value is null. For values of type Object, the value of the object's default property is used.
Example
The following mrScriptBasic example uses the MinOf function to get the lowest of a number of values:
MinOf(8, 9.2, 24, 1.75)
See also