Not

4D - Documentation   Français   English   German   4th Dimension 2004, Command Theme List   4th Dimension 2004, Command Alphabetical List   4th Dimension 2004, Constant Theme List   Back   Previous   Next

version 3


Not (boolean) Boolean

ParameterTypeDescription
booleanBooleanBoolean value to negate

Description

The Not function returns the negation of boolean, changing True to False or False to True.

Example

This example first assigns True to a variable, then changes the variable value to False, and then back to True.

   vResult:=True  ` vResult is set to True
   vResult:=Not(vResult)  ` vResult is set to False
   vResult:=Not(vResult)  ` vResult is set to True


4D - Documentation   Français   English   German   4th Dimension 2004, Command Theme List   4th Dimension 2004, Command Alphabetical List   4th Dimension 2004, Constant Theme List   Back   Previous   Next