NOT
Returns the opposite boolean value. TRUE becomes FALSE, FALSE becomes TRUE.
| Category | Logical |
| Syntax | NOT(logical) |
Parameters
| Parameter | Required | Description |
|---|---|---|
logical | Required | The value to negate. |
Example
NOT(TRUE) // → FALSE
NOT(x > 5) // → TRUE when x ≤ 5
Auto-generated from the EngCanvas function registry.