Difference between revisions of "MC-Basic:PlcMotionStatusDestroy"

From SoftMC-Wiki
Jump to: navigation, search
 
(8 intermediate revisions by the same user not shown)
Line 46: Line 46:
  
 
|SEE ALSO=
 
|SEE ALSO=
* [[AXY:MC-Basic:element.PlcMotionStatus|element.PlcMotionStatus]]
+
* [[MC-Basic:element.PlcMotionStatus|element.PlcMotionStatus]]
* [[AXY:MC-Basic:PlcMotionStatusCreate|PlcMotionStatusCreate]]
+
* [[MC-Basic:PlcMotionStatusCreate|PlcMotionStatusCreate]]
* [[AXY:MC-Basic:PlcMotionStatusQuery|PlcMotionStatusQuery]]
+
* [[MC-Basic:PlcMotionStatusQuery|PlcMotionStatusQuery]]
  
 
}}
 
}}
  
[[Category:Axystems:PLC]]
+
[[Category:PLC]]

Latest revision as of 09:20, 22 May 2014

Destroys a PlcMotionStatus object and frees its memory.

Syntax

PlcMotionStatusDestroy(<handle>)

Availability

4.10.x

Type

<handle>: Long

Scope

Task or Terminal

Examples

dim MotStatHanlde as long

MotStatHanlde = PlcMotionStatusCreate

Move A1 100 PlcMotionStatus= MotStatHanlde

while A1.isMoving
  sleep 100
  Print PlcMotionStatusQuery(MotStatHanlde, 1)
end while 

PlcMotionStatusDestroy(MotStatHanlde)

See Also