If

An If statement allows you to execute Then or Else scope of statements based on a condition. If the condition is true, the process executes the statements in the Then-scope. If the condition is false, the process executes the statements in the Else-scope.

Properties

Name Description
IsEnabled Turns on/off the execution of this statement.
Condition Defines an expression that when evaluated returns either a True or False value.   True value executes the Then scope of statements.  

False value executes the Else scope of statements.

See also Process Statement Expressions.