Skip to main content

NOT

Returns the opposite boolean value. TRUE becomes FALSE, FALSE becomes TRUE.

CategoryLogical
SyntaxNOT(logical)

Parameters

ParameterRequiredDescription
logicalRequiredThe value to negate.

Example

NOT(TRUE)             // → FALSE
NOT(x > 5) // → TRUE when x ≤ 5

Auto-generated from the EngCanvas function registry.