kitControl-Not
This component inverts the Boolean logic value currently at the (single) object input.
Not is available in the Logic folder of the kitControl palette.
You often link Not objects with other logic objects to make different logic gates. The following tables are examples using Not to create NAND (not and) logic, NOR (not or) logic, and EQUIV (equivalent) gate logic.

| In A | In B | Out |
|---|---|---|
| false | false | true |
| false | true | true |
| true | false | true |
| true | true | false |

| In A | In B | Out |
|---|---|---|
| false | false | true |
| false | true | false |
| true | false | false |
| true | true | false |

| In A | In B | Out |
|---|---|---|
| false | false | true |
| false | true | false |
| true | false | false |
| true | true | true |

| Property | Value | Description |
|---|---|---|
| Facets | Config Facets window (defaults to true and false) | Defines the text to display for each Boolean value. trueText configures the text to describe the state when component returns true. falseText configures the text to describe the state when component returns false. |
| Out | read-only true or false | Displays the result of the comparison. |
| In | StatusBoolean true or false and null definition | Provides the input values for the comparison. |