Difference between revisions of "MC-Basic:DetachFrom$"
(Created page with "{{MC-Basic |SHORT FORM= |SYNTAX= DetachFrom$ ''<task name> <element name>'' |AVAILABILITY= 0.4.15.5rc9 |DESCRIPTION= Detach given element from the given task. Same funct...") |
(cosmetics) |
||
(One intermediate revision by one other user not shown) | |||
Line 4: | Line 4: | ||
|SYNTAX= | |SYNTAX= | ||
− | DetachFrom$ ''< | + | DetachFrom$ '' <element name>'' File = "<task name>" |
Line 19: | Line 19: | ||
|RANGE= | |RANGE= | ||
− | <''task''>: The file must exist on the Flash Disk.<br> | + | <''task name''>: The file must exist on the Flash Disk.<br> |
|UNITS= | |UNITS= | ||
Line 35: | Line 35: | ||
<pre> | <pre> | ||
− | -->attachto$ "ttt.prg" | + | -->attachto$ a16 File = "ttt.prg" |
− | -->detachfrom$ "ttt.prg" | + | -->detachfrom$ a16 File = "ttt.prg" |
--> | --> | ||
</pre> | </pre> | ||
Line 43: | Line 43: | ||
<pre> | <pre> | ||
− | -->attachto ttt.prg | + | -->attachto a16 File = ttt.prg |
− | -->detachfrom ttt.prg | + | -->detachfrom a16 File = ttt.prg |
+ | --> | ||
</pre> | </pre> | ||
Latest revision as of 10:15, 4 August 2016
Detach given element from the given task. Same functionality as DETACH but from external context.
Syntax
DetachFrom$ <element name> File = "<task name>"
Availability
0.4.15.5rc9
Type
<task name>: String containing file specification, including file name and extension.
<element>: Element specification can be axis, group or robit.
Range
<task name>: The file must exist on the Flash Disk.
Scope
Task or Terminal
Examples
-->attachto$ a16 File = "ttt.prg" -->detachfrom$ a16 File = "ttt.prg" -->
or
-->attachto a16 File = ttt.prg -->detachfrom a16 File = ttt.prg -->