The if condition works just like in every programming language. If the condition evaluates to true, the subprocedure ''on true'' will be called, otherwise ''on false'' subprocedure executes. These subprocedurs are defined in procedure window under the if condition command. The condition has to be filled in. I.e.: val1=2 || val2 = ''aa'' || true
Parameters:- Expression - Boolean expression - The if expression.
Subprocedures:- OnTrue - Executed if the expression evaluates to true value,
- OnFalse - Executed if the expression evaluates to false value.
krzys2017-02-06