Process work space
When you load an existing process, the process code is shown in the work space. If you create a new process, a process frame is shown in which you specify the code:
#define EngineVersion 3.0
#define RuntimeVersion 3.0
bool NewProcess()
@Description: "Describe your process here";
@Category: "Place your process category here";
@Returns: "Place the return value description here";
{
/* To use intellisense press Ctrl-Space and select a function from the list */
/* To use autocompletion start typing the function. When the right function appears type the round opening bracket and select from a list of available signatures. */
/* add your BI# code here */
return true;
}
In the work space, the existing code lines are numbered.
Use the code entry help functions and runtime functions, to specify the required process code in the work space.