IF

This function determines if an event has occurred. If it has, the function subsequently captures the event by calling the function _EXPOSE().

_IF(booleanValue,ifTrue,ifFalse)

In this function, the evaluation of the first parameter determines if the evaluation of the second parameter is performed. Specifically, the parameter booleanValue determines if an event has occurred. If it has, the parameter ifTrue will contain the subsequent _EXPOSE() function call. If an event has not occurred, the evaluation of the third parameter, ifFalse, is performed.

Parameter

Type

Required/
Optional

Description

booleanValue

String

Required

After it is evaluated to a Boolean value, this parameter determines whether the second parameter or the third parameter is subsequently evaluated. The values true (case-insensitive), yes, and 1 are evaluated to true.

ifTrue

String

Required

This parameter is evaluated if booleanValue evaluates to true.

ifFalse

integer

Optional

This parameter is evaluated if booleanValue evaluates to false.


iWay Software