AnyOf Function

Syntax

Boolean AnyOf(Boolean parameter1, Boolean parameter2, Boolean parameter3, etc.)

Return Value

Boolean

The logical OR of all the parameters. This function uses short-circuit evaluation, i.e. if the function encounters a True parameter, the function immediately returns True without evaluating the remaining parameters.