MC-Basic:PlcMotionStatusDestroy

From SoftMC-Wiki
Revision as of 14:50, 5 November 2012 by Arwiebe (talk | contribs) (Created page with "{{MC-Basic |SHORT FORM= |SYNTAX= MotionStatusDestroy(<''handle''>) |AVAILABILITY= 4.10.x |DESCRIPTION= Destroys a MotionStatus object and frees its memory. |TYPE= Long |R...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Destroys a MotionStatus object and frees its memory.

Syntax

MotionStatusDestroy(<handle>)

Availability

4.10.x

Type

Long

Scope

Task or Terminal

Examples

dim MOT_READY as const long = 123
dim MotStatHanlde as long

MotStatHanlde = MotionStatusCreate

Move A1 MotionStatus= MotStatHanlde

do
  sleep 100
loop until MotionStatusQuery(MotStatHanlde, MOT_READY)

MotionStatusDestroy(MotStatHanlde)

See Also