forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnot.lcdoc
More file actions
41 lines (26 loc) · 814 Bytes
/
Copy pathnot.lcdoc
File metadata and controls
41 lines (26 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
Name: not
Type: operator
Syntax: not <value>
Summary:
Negates a <logical> <value>.
Introduced: 1.0
OS: mac, windows, linux, ios, android
Platforms: desktop, server, mobile
Example:
not true -- evaluates to false
Example:
set the visible of me to not the visible of me
Parameters:
value (bool):
True or false, or an expression that evaluate to true or false.
Description:
Use the <not> <operator> to reverse the meaning of a <logical>
<expression>.
If the <value> is true, not <value> is false, and if the <value> is
false, not <value> is true.
You can combine the logical operators <and>, <or>, and <not> in an
<expression>.
References: false (constant), value (function), operator (glossary),
expression (glossary), logical (glossary), or (operator), and (operator),
bitNot (operator)
Tags: math