Wtt commands


All the wtt-commands is available in the script code. An wtt-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";
   string value = "The valve is open";
   set attribute/name='name'/attr="Description"/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