Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from space WDESIGNER and version 24.0
Syntax
Code Block
languagenone
set aBoolean = <boolean expression>;
Semantics

Evaluates <boolean expression> to true or false and assigns the boolean value to aBoolean. Boolean variables can be used in boolean expressions.

Examples
Code Block
languagenone
set b1 = b2 and b3; 
set b4 = b2 or b3; 
set b5 = b2 and (b3 or b4); 
set b6 = not (b2);
set b7 = 2 < 1;
rp
Panel
titleRelated Pages: