Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. MODIFY#(Telitab$, Caption$, [ Mode%=0, 1, 2])
  2. MODIFY#(StrExp$StrExp$, Caption$, [ Mode%=0, 1, 2])

...

  • Telitab$ is a string parameter containing Telitab data. 
  • StrExp$This StrExp$This can be a relation resulting into a Telitab or a parameter containing a Telitab;
  • Caption$ is the caption presented in dialogue, this enables the possibility to give specific instrunctions;
  • Mode% is an option to determine the behaviour before and after this function is initiated:
    • Mode%=0 [default]: do not save the telitab in the parameter initiating the function. Thus, it will be interpreted by the system as intermediate calculated data. When the solution is repeated, the modified data will be reset and the calculation will be performed again (you lose your modified data);
    • Mode%=1: save the modified telitab in the parameter initiating the function. Thus, the modified data will be interpreted as input. When the solution is repeated, the modified data will be used and no recalculation will be carried out;
    • Mode%=2: always save the telitab in the parameter initiating the function. Thus, the data will always be interpreted as input (also when Telitab$ was initially based on calculations). When the solution is repeated, the modified data will be used and no recalculation will be carried out;

...