forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscope.lcdoc
More file actions
22 lines (15 loc) · 729 Bytes
/
Copy pathscope.lcdoc
File metadata and controls
22 lines (15 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Name: scope
Synonyms: scope, scoped, scoping
Type: glossary
Description:
The extent of places where a <variable> can be used.
A <variable|variable's> scope can be either <local variable|local>,
<script local variable|script local>, or <global>. A <local variable>
can be used only in the current <handler>. A <script local variable> can
be used in any <handler> in a <script>, but can't be used in
<handler|handlers> that are in other <script|scripts>. A <global>
variable can be used in any <handler> where it's <declare|declared>.
References: variable (glossary), handler (glossary), global (glossary),
script (glossary), local variable (glossary), declare (glossary),
script local variable (glossary)
Tags: properties