Native
Synchronous
No Custom Parameters
If returns a true branch condition if the supplied expression evaluates to true, and returns false if the expression is false.
Usually the Value1 parameter is specified as a variable, or a C# snippet. The only requirement of the C# snippet be that it evaluate to a boolean expression. The following snippets are valid C# values for the Value1 parameter:
Example 12.1. Valid C# Statements for Value1
1 == 1
System.String.Compare("ONE", "one", true) == 0
!myBoolVar
System.Boolean.Parse("false")
None.
| Parameter Name | .NET Type | Default | Description |
|---|---|---|---|
| Value1 * | System.Boolean | Boolean expression to evaluate. |
No Result Data
Branch Conditions
No description.
No description.