Versions Compared

Key

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

...

2. Retrieve the value in the SIL program and then use it just like any other variable. Make sure you cast it to your designated type (in our case, a number).

Code Block
number VAT = silEnv("VAT");
number price = customfield_10019;
print("VAT is:" + (price * VAT));

...