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
not(<boolean expression>)
set aBoolean = anotherBoolean.not()
SemanticsNegates the <boolean expression> or a boolean value.
SubstitutablesanotherBoolean Can be any variable or object attribute having the type Boolean
Examples

Returns false:

Code Block
languagenone
set inverted = not(true) 

Assigns the negation of the boolean value of x to y:

Code Block
languagenone
set y = x.not(); 
rp
Panel
titleRelated Pages: