Xtt commands


All the xtt-commands is available in the script code. An rtt-command line
should NOT be ended with a semicolon. Variables can be substituted in the
command line by surrounding them with apostrophes.

Example

   string name = "PUMP-VALVE-Open.ActualValue";
   float value = 2.2;
   set parameter/name='name'/value='value'

Example

   string name;
   string parname;
   int j;
   int i;
   for ( i = 0; i < 3; i++)
     parname = "vkv-test-obj" + (i+1);
     create obj/name='parname'
     for ( j = 0; j < 3; j++)
       name = parname + "-obj" + (j+1);
       create obj/name='name'
     endfor
   endfor