Input Syntax: Difference between revisions

Jump to navigation Jump to search
No edit summary
No edit summary
Line 22: Line 22:
! ''+ ADD''
! ''+ ADD''
| Copy the selected input name into the control expression field, with "+" prepended.
| Copy the selected input name into the control expression field, with "+" prepended.
|}
== Syntax ==
{| class="wikitable"
|-
! ''|''
| The expression is true if the left-hand side (LHS) or the right-hand side (RHS) are true. (This is not an exclusive OR.)
|-
! ''&''
| The expression is true if both the LHS and the RHS are true.
|-
! ''!''
| Negates the following expression's value.
|-
! ''+''
| The expression value is equal to the LHS value and the RHS value summed up.
|}
|}


== Parentheses ==
== Parentheses ==
Using '''''()''''' parentheses can group input parameters together and thus can solve '''''& AND''''' troubles.
'''''()''''' parentheses are used to group expressions.


{|
{|