Contents
Display Legacy Contents

 Print
    String Expressions    
String Expressions return a <string>, and each part of the expression is evaluated as a string. When editing an Expression of this type, you have Functions available and all the Kalipso objects from where you can retrieve values (Global Variables, Controls and Local Variables). To use any of these items you just have to double-click them and they will be automatically added to the Expression.

     
Consider that the value of Input "iProduct" is 1020393.

Example 1   Example 2   Example 3
"Product with code <" + CTRL(iProduct) + "> not found!"

Result = Product with code <1020393> not found!
  "The result of 1 + 2 is " + "1" + "2" + "."

Result = The result of 1 + 2 is 12
  "The result of 1 + 2 is " + NumToString(1 + 2) + "."

Result = The result of 1 + 2 is 3

See also
 
Updated: 11/16/2012 4:41 PM