This is part of the HicEst documentation

$SystemVariables: 10 Predefined Global Variables


Loop index $, menu item $$, $R, $C left side row, column, inline-loop index $1, carriage return $CR, linefeed $LF, CR+LF $CRLF, tab $TAB, $CMD_LINE.

⇾Home ⇾Contents ⇾more Programming ⇾ Examples



Bookmarks:
⇾carriage_return ⇾line_feed ⇾tabulator
Variable usage example result
$ left-hand side array loop variable to facilitate array operations
  • X2 = $
1 2
$R left-hand side array Row variable
  • M22 = $+ $R/10
1.1 2.1
3.2 4.2
$C left-hand side array Column variable
  • M22 = $+ $C/10
1.1 2.2
3.1 4.2
$1 inline-loop variable
  • Y2 = +(M22( $ , $1)*X2( $1))
5.5 11.5 matrix*vector
$$ the selected toolbar or menu number
  • IF( $$ == 3 ) action
some action
$CMD_LINE has the full command if HicEst was started via command line get 1st number in command line
$CR control character, same as CHAR(13), same as Ctrl+M
  • s3 = s1 & $CR & s2
string separator
$LF control character, same as CHAR(10), same as Ctrl+J
  • s3 = s1 & $LF & s2
string separator
$CRLF carriage return line feed control character combi, same as CHAR(13)// CHAR(10)
  • s3 = s1 & $CRLF & s2
string separator
$TAB control character, same as CHAR(9), same as Ctrl+I
  • s3 = s1 & $TAB & s2
string separator



Support HicEst   ⇾ Impressum
©2000-2019 Georg Petrich, HicEst Instant Prototype Computing. All rights reserved.