This repository was archived by the owner on Aug 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 225
Expand file tree
/
Copy pathcantAbort.lcdoc
More file actions
47 lines (31 loc) · 1.34 KB
/
cantAbort.lcdoc
File metadata and controls
47 lines (31 loc) · 1.34 KB
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
41
42
43
44
45
46
Name: cantAbort
Type: property
Syntax: set the cantAbort of <stack> to {true | false}
Summary:
Specifies whether the user can halt a <handler> with a
<key combination>.
Associations: stack
Introduced: 1.0
OS: mac, windows, linux, ios, android
Platforms: desktop, server, mobile
Example:
set the cantAbort of stack "Critical Functions" to true
Value (bool):
The <cantAbort> of a <stack> is true or false.
By default, the <cantAbort> <property> of newly created <stacks> is set
to false.
Description:
Use the <cantAbort> <property> to prevent users from interrupting any of
the <handler|handlers> in a <stack>.
If a stack's <cantAbort> <property> is set to false, the user can halt a
running <handler> in the stack by pressing Control-period or
Control-break (on <Windows> or <Unix>) or Command-period (on <Mac OS>).
If the <cantAbort> is true, the user cannot interrupt a <handler>.
>*Warning:* Before setting a stack's <cantAbort> <property> to true,
> make sure all <handler|handlers> that may be affected have been
> thoroughly tested. If <cantAbort> is set to true, you cannot interrupt
> a runaway <handler> with the standard <key combination>.
References: stacks (function), property (glossary), handler (glossary),
key combination (glossary), Windows (glossary), Unix (glossary),
Mac OS (glossary), stack (object), allowInterrupts (property)
Tags: ui