Versions Compared

Key

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

There is a simple way to disable built-in syntax checker for the whole calculation (there is no longer need to put in each element), it will only work , so you do not need to do it for each element separately. It works only for the save operation, and while . While looking for configuration (select selecting a logic), it will never abort any real calculations

To set it up, create a new element as , put it on the 1st or 2nd , and then put a simple codeposition and insert the following code in it:

Paste code macro
languagegroovy
if (api.isSyntaxCheck()) {
	api.abortCalculation()
}

...