class Ens.DTL.If
extends Ens.DTL.Action
This class represents the If Action. A supplied condition expression is evaluated. If the condition evaluates to true
the sequence of activities defined within the True activity list are executed. If the conditions evaluates to false then
the sequence of activities defined within the False activity list are exectued. At least one of the True or False activity
lists MUST be none empty.
parameter TAGNAME = "if";
property Condition
as %String;
This holds the selection condition
property False
as Ens.DTL.ActionList;
This holds the activities to be performed if the condition
evaluates to be false
property True
as Ens.DTL.ActionList;
This holds the activities to be performed if the condition
evaluates to true