MC-Basic:PlcMotionStatusCreate

From SoftMC-Wiki
Revision as of 14:51, 5 November 2012 by Arwiebe (talk | contribs) (Created page with "{{MC-Basic |SHORT FORM= |SYNTAX= <''handle''> = MotionStatusCreate |AVAILABILITY= 4.10.x |DESCRIPTION= Creates a new MotionStatus object and returns a pointer in memory to ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Creates a new MotionStatus object and returns a pointer in memory to it.

Syntax

<handle> = MotionStatusCreate

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