MC-Basic:element.PROCEEDTYPE/zh-hans

From SoftMC-Wiki
Jump to: navigation, search
语言: English  • 中文(简体)‎

缩写

格式

<element>.ProceedType = <expression>
? <element>.ProceedType

适用版本

所有版本

描述

该属性定义了PROCEED命令要执行的操作。它可以设置为固定值(modal),或者可以在(nodal)中使用一个PROCEED命令临时覆盖固定值。

1 (CONTINUE) – 继续停止运动。 如果缓冲区中有两个运动,则执行两个(一个被执行,另一个在STOP命令被发出时被挂起)。


2 (NEXTMOTION) – 中止当前运动,并在运动缓冲区中执行下一个运动命令。 在STOP期间正在执行的运动被中止,执行挂起的运动)。


3 (CLEARMOTION) – Abort all motion commands in the motion buffer. Actually clears the motion buffers from complete history
中止运动缓冲区中的所有运动命令。 实际上从完整的历史清除运动缓冲区

4 (INTERRUPTED) - Execute only the interrupted motion but not the pending one (Note: program will not continue, in order to release the waiting program you need to issue PENDING option)

5 (PENDING) - Execute the pending motion and release the the waiting task. (Note: can be issue only after INTERRUPTED option has been executed.)

类型

Long

取值范围

1 to 5

单位

默认

3

使用范围

Configuration, Task or Terminal

限制

例子

Axis
A1.ProceedType = Continue
?A1.ProceedType
Proceed A1 ProceedType=Next

Group
G1.ProceedType = Continue
?G1.ProceedType
Proceed G1 ProceedType=Next

参考