Packagesystem.logic
Classpublic class ElseIfFalse
InheritanceElseIfFalse Inheritance ElseIf Inheritance Object

Defines if a condition is false in an 'elseif' conditional block.

See also

system.rules.False
system.process.logic.ElseIf


Public Properties
 PropertyDefined By
 Inheritedrule : Rule
The conditional rule of the 'elseif' block.
ElseIf
 Inheritedthen : Action
The then action of the 'elseif' block.
ElseIf
Public Methods
 MethodDefined By
  
ElseIfFalse(condition:*, then:Action = null)
Creates a new ElseIfFalse instance.
ElseIfFalse
 Inherited
eval():Boolean
Evaluates a specific condition.
ElseIf
Constructor Detail
ElseIfFalse()Constructor
public function ElseIfFalse(condition:*, then:Action = null)

Creates a new ElseIfFalse instance.

Parameters
condition:* — The Boolean value or the Rule object to evaluate.
 
then:Action (default = null) — The Action to execute if the condition is true.