property Expression.Text as String
Specifies the control's text.

TypeDescription
String A string expression that defines the control's text/expression.

The Text property specifies the control's text/expression. The Expression property returns the expression to be evaluated. The EvaluateSelection property specifies whether the control evaluates the selection when it is available. So, if the EvaluateSelection property the Expression property returns the selected text ( if the SelLength property is greater than 0 ), or the entire text if the SelLength property is 0. The control fires the SelChange event when user changes the selection. Use the SelForeColor and SelBackColor properties to specify the colors for the selected text.

For instance:

Most of our components support formatting the values. By formatting we mean that instead displaying a  value we can display in the way we desire. Properties such as Column.FormatColumn, Items.FormatCell and so on support formatting. For instance, the currency(100) displays the value 100 as a currency, for instance in US format it will display $100 while for German format will display 100 €. The format expression supports operators, constants and values as described bellow. From case to case, there are few predefined keywords such as value, which indicates the value to be formatted, the %0, %1, %2, %3, ... indicates variables that could be: the value in a specified column, the value for a specified property of the bar, and so on. If the formatting is using in  properties such as: Items.ItemBar(exBarToolTip), Items.ItemBar(exBarCaption) or Items.ItemBar(exBarExtraCaption) the %C0, %C1, %C2, ... indicates the captions of the cells, ...

This property/method supports predefined constants and operators/functions as described here.