Difference between revisions of "MC-Basic:PlcMotionStatusDestroy"
Line 3: | Line 3: | ||
|SYNTAX= | |SYNTAX= | ||
− | + | PlcMotionStatusDestroy(<''handle''>) | |
|AVAILABILITY= | |AVAILABILITY= | ||
Line 9: | Line 9: | ||
|DESCRIPTION= | |DESCRIPTION= | ||
− | Destroys a | + | Destroys a PlcMotionStatus object and frees its memory. |
|TYPE= | |TYPE= | ||
Line 34: | Line 34: | ||
dim MotStatHanlde as long | dim MotStatHanlde as long | ||
− | MotStatHanlde = | + | MotStatHanlde = PlcMotionStatusCreate |
− | Move A1 | + | Move A1 PlcMotionStatus= MotStatHanlde |
do | do | ||
sleep 100 | sleep 100 | ||
− | loop until | + | loop until PlcMotionStatusQuery(MotStatHanlde, MOT_READY) |
− | + | PlcMotionStatusDestroy(MotStatHanlde) | |
</pre> | </pre> | ||
|SEE ALSO= | |SEE ALSO= | ||
− | * [[AXY:MC-Basic:element.PlcMotionStatus|element. | + | * [[AXY:MC-Basic:element.PlcMotionStatus|element.PlcMotionStatus]] |
− | * [[AXY:MC-Basic:PlcMotionStatusCreate| | + | * [[AXY:MC-Basic:PlcMotionStatusCreate|PlcMotionStatusCreate]] |
− | * [[AXY:MC-Basic:PlcMotionStatusQuery| | + | * [[AXY:MC-Basic:PlcMotionStatusQuery|PlcMotionStatusQuery]] |
}} | }} | ||
[[Category:Axystems:PLC]] | [[Category:Axystems:PLC]] |
Revision as of 09:06, 8 November 2012
Destroys a PlcMotionStatus object and frees its memory.
Syntax
PlcMotionStatusDestroy(<handle>)
Availability
4.10.x
Type
Long
Scope
Task or Terminal
Examples
dim MOT_READY as const long = 123 dim MotStatHanlde as long MotStatHanlde = PlcMotionStatusCreate Move A1 PlcMotionStatus= MotStatHanlde do sleep 100 loop until PlcMotionStatusQuery(MotStatHanlde, MOT_READY) PlcMotionStatusDestroy(MotStatHanlde)