*ShowAsEvaluated()

Designates whether or not a Templex text file should be shown in its evaluated form when the file is read.

Syntax

*ShowAsEvaluated (eval)

Inputs

eval
1
If the expression should be displayed as evaluated.
0
If the expression should not be displayed as evaluated.

Example

*BeginTextEditor()
  *Filename({TEXT_FILE_1})
     *ShowAsEvaluated(1)
     *BeginText()
      { templex_off }
      {2*0}
      {2*1}
      {2*2}
      {2*3}
      {2*4}
      {2*5}
      { templex_on }
     *EndText()
  *TextColor(0)
  *BackgroundColor(1)
  *Font("Courier", 1, 0, 12)
*EndTextEditor()