More examples

  • Two inputs, logical AND

    Image

  • Not two inputs

    Image

  • Two-input addition

    Image

  • Divider (two Double) properties

    Image

  • Subtraction

    Image

  • Expression mixture

    Image

  • Greater and less than expressions

    Image

    The examples above each result in two outputs.

    The last column on the right indicates that the two outputs are different slot types (Double and Boolean). This is legal.

  • Using the “like” expression

    Image

  • Multiply four Double properties

    inA * inB * inC * inD as ‘out’

  • Multiply two BStatusNumeric properties to a Double output property.

    inA.value * inB.value as ‘out’

  • Negate a Double input property (if inA is 5, out becomes -5)

    -inA as ‘out’